From ac5dd7ecfd9d046d14c0427bdf5d1220c7522df3 Mon Sep 17 00:00:00 2001 From: Ian O Connell Date: Wed, 29 Jul 2015 13:22:29 -0700 Subject: [PATCH] Version updates for rls --- CHANGES.md | 7 +++++++ README.md | 32 +++++++++++++++----------------- project/Build.scala | 2 +- version.sbt | 2 +- 4 files changed, 24 insertions(+), 19 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8729a477..b59c2a85 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Storehaus # +### Version 0.12.0 ### +* Update for new finagle: https://github.com/twitter/storehaus/pull/277 +* Move version to separate file, recommended way to do it for sbt: https://github.com/twitter/storehaus/pull/276 +* Upgrades scalacheck to the same as other projects, add same scalac op…: https://github.com/twitter/storehaus/pull/275 +* Updates for 2.11: https://github.com/twitter/storehaus/pull/274 +* AsyncHBaseStringStore is returning wrong instance: https://github.com/twitter/storehaus/pull/271 + ### Version 0.11.2 ### * Algebird to 0.10.2 #269 diff --git a/README.md b/README.md index b4050963..7f93ea03 100644 --- a/README.md +++ b/README.md @@ -108,39 +108,37 @@ 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.10.0`. +Storehaus modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.12.0`. Current published artifacts are -* `storehaus-core_2.9.3` +* `storehaus-core_2.11` * `storehaus-core_2.10` -* `storehaus-algebra_2.9.3` +* `storehaus-algebra_2.11` * `storehaus-algebra_2.10` -* `storehaus-memcache_2.9.3` +* `storehaus-memcache_2.11` * `storehaus-memcache_2.10` -* `storehaus-mysql_2.9.3` +* `storehaus-mysql_2.11` * `storehaus-mysql_2.10` -* `storehaus-hbase_2.9.3` +* `storehaus-hbase_2.11` * `storehaus-hbase_2.10` -* `storehaus-redis_2.9.3` +* `storehaus-redis_2.11` * `storehaus-redis_2.10` -* `storehaus-dynamodb_2.9.3` +* `storehaus-dynamodb_2.11` * `storehaus-dynamodb_2.10` -* `storehaus-kafka_2.9.3` -* `storehaus-kafka_2.10` -* `storehaus-kafka-08_2.9.3` +* `storehaus-kafka-08_2.11` * `storehaus-kafka-08_2.10` -* `storehaus-mongodb_2.9.3` +* `storehaus-mongodb_2.11` * `storehaus-mongodb_2.10` -* `storehaus-elasticsearch_2.9.3` +* `storehaus-elasticsearch_2.11` * `storehaus-elasticsearch_2.10` -* `storehaus-leveldb_2.9.3` +* `storehaus-leveldb_2.11` * `storehaus-leveldb_2.10` -* `storehaus-http_2.9.3` +* `storehaus-http_2.11` * `storehaus-http_2.10` -* `storehaus-cache_2.9.3` +* `storehaus-cache_2.11` * `storehaus-cache_2.10` -* `storehaus-testing_2.9.3` +* `storehaus-testing_2.11` * `storehaus-testing_2.10` The suffix denotes the scala version. diff --git a/project/Build.scala b/project/Build.scala index 91df0628..a33547c8 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -114,7 +114,7 @@ object StorehausBuild extends Build { def youngestForwardCompatible(subProj: String) = Some(subProj) .filterNot(unreleasedModules.contains(_)) - .map { s => "com.twitter" % ("storehaus-" + s + "_2.10") % "0.11.2" } + .map { s => "com.twitter" % ("storehaus-" + s + "_2.10") % "0.12.0" } val algebirdVersion = "0.11.0" val bijectionVersion = "0.8.0" diff --git a/version.sbt b/version.sbt index d0e1c471..185f13e7 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.11.2" +version in ThisBuild := "0.12.0"