From 44288c8a70339f98c4fe1a5815e21f69fb565622 Mon Sep 17 00:00:00 2001 From: Piotr Kolaczkowski Date: Fri, 7 Aug 2015 11:47:04 +0200 Subject: [PATCH] Prepare release 1.4.0-M3 --- CHANGES.txt | 7 ++++++- README.md | 4 ++-- project/Settings.scala | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index b455d005c..31ee1cdd5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ +1.4.0 M3 + * Fixed UDT column bug in SparkSQL (SPARKC-219) + * Includes all patches up to release 1.2.5 and 1.3.0 + - Fixed connection caching, changed SSL EnabledAlgorithms to Set (SPARKC-227) + 1.4.0 M2 - * Includes unreleased patches from 1.2.5 + * Includes some unreleased patches from 1.2.5 - Changed default query timeout from 12 seconds to 2 minutes (SPARKC-220) - Add a configurable delay between subsequent query retries (SPARKC-221) - spark.cassandra.output.throughput_mb_per_sec can now be set to a decimal (SPARKC-226) diff --git a/README.md b/README.md index 14775cd86..6f825c7f2 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,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.4.0-M2" + libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "1.4.0-M3" 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.4.0-M2" + libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector-java" % "1.4.0-M3" ## Building See [Building And Artifacts](doc/12_building_and_artifacts.md) diff --git a/project/Settings.scala b/project/Settings.scala index 702992a3c..7da2c06d7 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -49,7 +49,7 @@ object Settings extends Build { lazy val buildSettings = Seq( organization := "com.datastax.spark", - version in ThisBuild := s"1.4.0-M2$versionSuffix", + version in ThisBuild := s"1.4.0-M3$versionSuffix", scalaVersion := Versions.scalaVersion, crossScalaVersions := Versions.crossScala, crossVersion := CrossVersion.binary,