diff --git a/README.md b/README.md index 4c04f8733..15d7dea86 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ This project has been published to the Maven Central Repository. For SBT to download the connector binaries, sources and javadoc, put this in your project SBT config: - libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "1.0.4" withSources() withJavadoc() + libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "1.0.5" withSources() withJavadoc() If you want to access the functionality of Connector from Java, you may want to add also a Java API module: - libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector-java" % "1.0.4" withSources() withJavadoc() + libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector-java" % "1.0.5" withSources() withJavadoc() ## Building diff --git a/project/Settings.scala b/project/Settings.scala index 08e2370ae..c8d5621c6 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -37,7 +37,7 @@ object Settings extends Build { "and executes CQL queries in Spark applications.", organization := "com.datastax.spark", organizationHomepage := Some(url("http://www.datastax.com/")), - version in ThisBuild := "1.0.5-SNAPSHOT", + version in ThisBuild := "1.0.6-SNAPSHOT", scalaVersion := Versions.Scala, homepage := Some(url("https://github.com/datastax/spark-cassandra-connector")), licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))