From a773d465491afc0c33ff07d9bd7671d342cc5036 Mon Sep 17 00:00:00 2001 From: Katya Gonina Date: Thu, 28 May 2015 10:58:00 -0700 Subject: [PATCH] bumping to version 0.8.0 (scalding 0.15.0, algebird 0.10.1) --- CHANGES.md | 3 +++ README.md | 2 +- project/Build.scala | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a4ee9a9b7..51daa419c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Summingbird # +## 0.8.0 +* bumping Scalding to 0.15.0, algebird to 0.10.1 + ## 0.7.0 * Registering summingbird counters with tormenta spouts #553 * Add counters to default summers #571 diff --git a/README.md b/README.md index b4b13c5da..5957bf0dd 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ Please feel free to use the beautiful [Summingbird logo](https://drive.google.co ## Maven -Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.7.0`. +Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.8.0`. Current published artifacts are diff --git a/project/Build.scala b/project/Build.scala index 332f61293..4c2a307b1 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -21,14 +21,14 @@ object SummingbirdBuild extends Build { val scalaCheckVersion = "1.12.2" val hadoopVersion = "1.2.1" - val algebirdVersion = "0.10.0" + val algebirdVersion = "0.10.1" val bijectionVersion = "0.8.0" val chillVersion = "0.6.0" val slf4jVersion = "1.6.6" val parquetVersion = "1.6.0rc4" val dfsDatastoresVersion = "1.3.6" - val scaldingVersion = "0.14.0" + val scaldingVersion = "0.15.0" val storehausVersion = "0.11.0" val utilVersion = "6.3.8" @@ -48,7 +48,7 @@ object SummingbirdBuild extends Build { val sharedSettings = extraSettings ++ Seq( organization := "com.twitter", - version := "0.7.0", + version := "0.8.0", scalaVersion := "2.10.5", crossScalaVersions := Seq("2.10.5"), // To support hadoop 1.x @@ -181,7 +181,7 @@ object SummingbirdBuild extends Build { def youngestForwardCompatible(subProj: String) = Some(subProj) .filterNot(unreleasedModules.contains(_)) - .map { s => "com.twitter" % ("summingbird-" + s + "_2.10") % "0.7.0" } + .map { s => "com.twitter" % ("summingbird-" + s + "_2.10") % "0.8.0" } def module(name: String) = { val id = "summingbird-%s".format(name)