From 0b54b3fb2ec6d7de2e255091c6c3edb41a4c3324 Mon Sep 17 00:00:00 2001 From: Ian O Connell Date: Fri, 18 Apr 2014 16:19:33 -0700 Subject: [PATCH] Changes for release --- CHANGES.md | 12 ++++++++++++ README.md | 2 +- project/Build.scala | 2 +- version.sbt | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 5d0b51293..06051b03c 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,17 @@ # Algebird # +### Version 0.6.0 ### +* make constructors for SpaceSaver subclasses public so that deserializers..: https://github.com/twitter/algebird/pull/289 +* Restoring optimized SketchMapMonoid#sumOption: https://github.com/twitter/algebird/pull/293 +* Newer caliper hll benchmark: https://github.com/twitter/algebird/pull/297 +* hll optimization: https://github.com/twitter/algebird/pull/299 +* Optimize the storage backend used in sketch map: https://github.com/twitter/algebird/pull/301 +* migrate async summers from Summingbird: https://github.com/twitter/algebird/pull/296 +* add sumOption to EventuallySemiGroup: https://github.com/twitter/algebird/pull/306 +* Heavyhitters no longer attempts lazy storage in SketchMap: https://github.com/twitter/algebird/pull/305 +* Async Maps performance improvements: https://github.com/twitter/algebird/pull/302 +* Make the AsyncListSum be immutable again: https://github.com/twitter/algebird/pull/309 + ### Version 0.5.0 ### * Remove handling that doesn't seem needed/wanted for longs: https://github.com/twitter/algebird/pull/287 * Add average() for DecayedValue: https://github.com/twitter/algebird/pull/286 diff --git a/README.md b/README.md index b8f1f7b48..ca37bad9d 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Discussion occurs primarily on the [Algebird mailing list](https://groups.google ## Maven -Algebird modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.5.0`. +Algebird modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.6.0`. Current published artifacts are diff --git a/project/Build.scala b/project/Build.scala index 4380b2178..7d535d418 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -89,7 +89,7 @@ object AlgebirdBuild extends Build { def youngestForwardCompatible(subProj: String) = Some(subProj) .filterNot(unreleasedModules.contains(_)) - .map { s => "com.twitter" % ("algebird-" + s + "_2.9.3") % "0.5.0" } + .map { s => "com.twitter" % ("algebird-" + s + "_2.9.3") % "0.6.0" } lazy val algebird = Project( id = "algebird", diff --git a/version.sbt b/version.sbt index 0d6d27c4b..0512f1612 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.5.0" +version in ThisBuild := "0.6.0"