diff --git a/CHANGES.md b/CHANGES.md index 874bc2a6..ad1a0e69 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,21 @@ # Storehaus # +### Version 0.10.0 ### +* Use latest scalding, algebird, and bijection versions: https://github.com/twitter/storehaus/pull/255 +* Use new Travis CI container infrastructure: https://github.com/twitter/storehaus/pull/254 +* Add hook for CAS based memcache mergeable: https://github.com/twitter/storehaus/pull/252 +* Bump bijection/algebird versions: https://github.com/twitter/storehaus/pull/253 +* Remove + operator: https://github.com/twitter/storehaus/pull/21 +* Memcache mergeable - use semigroup: https://github.com/twitter/storehaus/pull/251 +* add logic for replicating writes and reads to stores: https://github.com/twitter/storehaus/pull/20 +* bump finagle and util to 6.22.0: https://github.com/twitter/storehaus/pull/247 +* Minified kill 2.9.3: https://github.com/twitter/storehaus/pull/249 +* Read through store - do not query backing store when no cache miss: https://github.com/twitter/storehaus/pull/246 +* implementation of store that uses http protocol: https://github.com/twitter/storehaus/pull/241 +* Retry unittest: https://github.com/twitter/storehaus/pull/240 +* Added endpoint support to storehaus-dynamodb: https://github.com/twitter/storehaus/pull/236 +* Https sonatype: https://github.com/twitter/storehaus/pull/237 + ### 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 diff --git a/README.md b/README.md index 83f9989e..5946a373 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ Discussion occurs primarily on the [Storehaus mailing list](https://groups.googl ## Maven -Storehaus modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.9.0`. +Storehaus modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.10.0`. Current published artifacts are diff --git a/project/Build.scala b/project/Build.scala index 886d05ad..981d63ce 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -58,7 +58,7 @@ object StorehausBuild extends Build { val sharedSettings = extraSettings ++ ciSettings ++ Seq( organization := "com.twitter", scalaVersion := "2.10.4", - version := "0.9.1", + version := "0.10.0", crossScalaVersions := Seq("2.10.4"), javacOptions ++= Seq("-source", "1.6", "-target", "1.6"), javacOptions in doc := Seq("-source", "1.6"), @@ -122,7 +122,7 @@ object StorehausBuild extends Build { val algebirdVersion = "0.9.0" val bijectionVersion = "0.7.2" val utilVersion = "6.22.0" - val scaldingVersion = "0.13.0" + val scaldingVersion = "0.13.1" lazy val storehaus = Project( id = "storehaus",