From d2ec59f8eec4cae5d4a092c0b7868d53e27a0d5f Mon Sep 17 00:00:00 2001 From: Sam Ritchie Date: Wed, 18 Sep 2013 17:32:01 -0700 Subject: [PATCH] 0.1.4 release --- CHANGES.md | 14 ++++++++++++-- README.md | 2 +- project/Build.scala | 5 +++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e8d123c15..da7576401 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,19 @@ # summingbird # +## 0.1.4 + +* Fix Storm Tests: https://github.com/twitter/summingbird/pull/227 +* Custom --name flag for job name in builder api: https://github.com/twitter/summingbird/pull/226 +* Remove SINK_ID reference from SourceBuilder: https://github.com/twitter/summingbird/pull/225 +* Add Dot Graph Generation from SB Producer: https://github.com/twitter/summingbird/pull/223 +* Push filters down to storm spout: https://github.com/twitter/summingbird/pull/224 +* Revert StoreIntermediate to old approach: https://github.com/twitter/summingbird/pull/219 +* Add in old SummingJoin: https://github.com/twitter/summingbird/pull/218 + ## 0.1.3 -Fix bug in storm planner's forking: https://github.com/twitter/summingbird/pull/217 -Don't send empty multiGets to online service: https://github.com/twitter/summingbird/pull/209 +* Fix bug in storm planner's forking: https://github.com/twitter/summingbird/pull/217 +* Don't send empty multiGets to online service: https://github.com/twitter/summingbird/pull/209 ## 0.1.2 diff --git a/README.md b/README.md index 77b6fbae0..09a115699 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Follow [@summingbird](https://twitter.com/summingbird) on Twitter for updates. ## Maven -Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.1.3`. +Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.1.4`. Current published artifacts are diff --git a/project/Build.scala b/project/Build.scala index b19341130..bfec8302c 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -16,7 +16,7 @@ object SummingbirdBuild extends Build { val sharedSettings = Project.defaultSettings ++ releaseSettings ++ Seq( organization := "com.twitter", - version := "0.1.3", + version := "0.1.4", scalaVersion := "2.9.3", crossScalaVersions := Seq("2.9.3", "2.10.0"), libraryDependencies ++= Seq( @@ -52,7 +52,8 @@ object SummingbirdBuild extends Build { if (v.trim.toUpperCase.endsWith("SNAPSHOT")) Opts.resolver.sonatypeSnapshots else - Opts.resolver.sonatypeStaging + "fuck" at "http://artifactory.local.twitter.com/libs-releases-local" + // Opts.resolver.sonatypeStaging ) },