Skip to content

Commit

Permalink
bumping version to 0.15.0; algebird to 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Katya Gonina committed May 21, 2015
1 parent cdaf2be commit df04598
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Scalding #

### Version 0.15.0 ###
* Move OrderedSerialization into zero-dep scalding-serialization module #1289
* bump elephantbird to 4.8 #1292
* Fix OrderedSerialization for some forked graphs #1293
* Add serialization modules to aggregate list #1298

### Version 0.14.0 ###
* add .unit to Execution object #1189
* Override hashCode for Args #1190
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Scalding is a Scala library that makes it easy to specify Hadoop MapReduce jobs.

![Scalding Logo](https://raw.github.com/twitter/scalding/develop/logo/scalding.png)

Current version: `0.14.0`
Current version: `0.15.0`

## Word Count

Expand Down
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ object ScaldingBuild extends Build {
}
def isScala210x(scalaVersion: String) = scalaBinaryVersion(scalaVersion) == "2.10"

val algebirdVersion = "0.10.0"
val algebirdVersion = "0.10.1"
val avroVersion = "1.7.4"
val bijectionVersion = "0.8.0"
val cascadingAvroVersion = "2.1.2"
Expand Down Expand Up @@ -228,7 +228,7 @@ object ScaldingBuild extends Build {
Some(subProj)
.filterNot(unreleasedModules.contains(_))
.map {
s => "com.twitter" % ("scalding-" + s + "_2.10") % "0.14.0"
s => "com.twitter" % ("scalding-" + s + "_2.10") % "0.15.0"
}

def module(name: String) = {
Expand Down
2 changes: 1 addition & 1 deletion scalding-core/src/main/scala/com/twitter/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ package object scalding {
/**
* Make sure this is in sync with version.sbt
*/
val scaldingVersion: String = "0.14.0"
val scaldingVersion: String = "0.15.0"

object RichPathFilter {
implicit def toRichPathFilter(f: PathFilter) = new RichPathFilter(f)
Expand Down
2 changes: 1 addition & 1 deletion tutorial/execution-tutorial/ExecutionTutorial.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To test it, first build the assembly jar from root directory:
./sbt execution-tutorial/assembly
Run:
scala -classpath tutorial/execution-tutorial/target/execution-tutorial-assembly-0.14.0.jar \
scala -classpath tutorial/execution-tutorial/target/execution-tutorial-assembly-0.15.0.jar \
com.twitter.scalding.tutorial.MyExecJob --local \
--input tutorial/data/hello.txt \
--output tutorial/data/execution_output.txt
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.14.0"
version in ThisBuild := "0.15.0"

0 comments on commit df04598

Please sign in to comment.