From b0bb0b0ba71bf4945404842a8da145ed17555b76 Mon Sep 17 00:00:00 2001 From: Ian O Connell Date: Fri, 11 Jul 2014 15:43:12 -0700 Subject: [PATCH] Release entries for 0.9.1 --- .travis.yml | 2 +- CHANGES.md | 6 ++++++ project/Build.scala | 10 +++++----- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d8e1be1..3c1941a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: scala scala: - - 2.10.3 + - 2.10.4 - 2.9.3 before_script: - mysql -u root -e "create database storehaus_test;" diff --git a/CHANGES.md b/CHANGES.md index 326abece..874bc2a6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Storehaus # +### Version 0.9.1 ### +* Feature/write through cache perf: https://github.com/twitter/storehaus/pull/234 +* Share the Retrying Read Write store in storehaus repo: https://github.com/twitter/storehaus/pull/230 +* initial Kafka 0.8 support: https://github.com/twitter/storehaus/pull/232 +* Exceptions on the cache-store should be ignored for Read/WriteThroughStore: https://github.com/twitter/storehaus/pull/225 + ### Version 0.9.0 ### * Reporting store algebra: https://github.com/twitter/storehaus/pull/176 * Bumping finagle to a more recent version, changes that were required: https://github.com/twitter/storehaus/pull/223 diff --git a/project/Build.scala b/project/Build.scala index 4077063f..3f6d2712 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -58,8 +58,8 @@ object StorehausBuild extends Build { val sharedSettings = extraSettings ++ ciSettings ++ Seq( organization := "com.twitter", scalaVersion := "2.9.3", - version := "0.9.0", - crossScalaVersions := Seq("2.9.3", "2.10.0"), + version := "0.9.1", + crossScalaVersions := Seq("2.9.3", "2.10.4"), javacOptions ++= Seq("-source", "1.6", "-target", "1.6"), javacOptions in doc := Seq("-source", "1.6"), libraryDependencies <+= scalaVersion(specs2Import(_)), @@ -119,10 +119,10 @@ object StorehausBuild extends Build { .filterNot(unreleasedModules.contains(_)) .map { s => "com.twitter" % ("storehaus-" + s + "_2.9.3") % "0.9.0" } - val algebirdVersion = "0.6.0" - val bijectionVersion = "0.6.2" + val algebirdVersion = "0.7.0" + val bijectionVersion = "0.6.3" val utilVersion = "6.11.0" - val scaldingVersion = "0.9.0rc15" + val scaldingVersion = "0.11.1" lazy val storehaus = Project( id = "storehaus",