Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Commit 34611dd

Browse files
author
Katya Gonina
committed
Merge branch 'release/0.8.0'
2 parents c28db7f + a773d46 commit 34611dd

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Summingbird #
22

3+
## 0.8.0
4+
* bumping Scalding to 0.15.0, algebird to 0.10.1
5+
36
## 0.7.0
47
* Registering summingbird counters with tormenta spouts #553
58
* Add counters to default summers #571

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Please feel free to use the beautiful [Summingbird logo](https://drive.google.co
108108

109109
## Maven
110110

111-
Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.7.0`.
111+
Summingbird modules are published on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.8.0`.
112112

113113
Current published artifacts are
114114

project/Build.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ object SummingbirdBuild extends Build {
2121

2222
val scalaCheckVersion = "1.12.2"
2323
val hadoopVersion = "1.2.1"
24-
val algebirdVersion = "0.10.0"
24+
val algebirdVersion = "0.10.1"
2525
val bijectionVersion = "0.8.0"
2626
val chillVersion = "0.6.0"
2727
val slf4jVersion = "1.6.6"
2828
val parquetVersion = "1.6.0rc4"
2929

3030
val dfsDatastoresVersion = "1.3.6"
31-
val scaldingVersion = "0.14.0"
31+
val scaldingVersion = "0.15.0"
3232
val storehausVersion = "0.11.0"
3333
val utilVersion = "6.3.8"
3434

@@ -48,7 +48,7 @@ object SummingbirdBuild extends Build {
4848

4949
val sharedSettings = extraSettings ++ Seq(
5050
organization := "com.twitter",
51-
version := "0.7.0",
51+
version := "0.8.0",
5252
scalaVersion := "2.10.5",
5353
crossScalaVersions := Seq("2.10.5"),
5454
// To support hadoop 1.x
@@ -181,7 +181,7 @@ object SummingbirdBuild extends Build {
181181
def youngestForwardCompatible(subProj: String) =
182182
Some(subProj)
183183
.filterNot(unreleasedModules.contains(_))
184-
.map { s => "com.twitter" % ("summingbird-" + s + "_2.10") % "0.7.0" }
184+
.map { s => "com.twitter" % ("summingbird-" + s + "_2.10") % "0.8.0" }
185185

186186
def module(name: String) = {
187187
val id = "summingbird-%s".format(name)

0 commit comments

Comments
 (0)