Skip to content

Commit

Permalink
Scalding 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Coveney committed May 13, 2014
1 parent 426d4b8 commit 8ebdb25
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
@@ -1,5 +1,12 @@
# Scalding #

### Version 0.10.0 ###
* Upgrade cascading to 2.5.4, cascading jdbc to 2.5.2
* Adding an hdfs mode for the Scalding REPL
* Added implementation of PartitionSource with tests
* Add helper methods to KeyedList and TypedPipe
* Add addTrap to TypedPipe

### Version 0.9.0 ###
* Add join operations to TypedPipe that do not require grouping beforehand
* Fixed bug in size estimation of diagonal matrices
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.9.1`
Current version: `0.10.0`

## Word Count

Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Expand Up @@ -157,7 +157,7 @@ object ScaldingBuild extends Build {
Some(subProj)
.filterNot(unreleasedModules.contains(_))
.map {
s => "com.twitter" % ("scalding-" + s + "_2.9.2") % "0.8.5"
s => "com.twitter" % ("scalding-" + s + "_2.9.2") % "0.10.0"
}

def module(name: String) = {
Expand Down
2 changes: 1 addition & 1 deletion scalding-core/src/main/scala/com/twitter/package.scala
Expand Up @@ -33,7 +33,7 @@ package object scalding {
/**
* Make sure this is in sync with version.sbt
*/
val scaldingVersion: String = "0.9.1"
val scaldingVersion: String = "0.10.0"

object RichPathFilter {
implicit def toRichPathFilter(f: PathFilter) = new RichPathFilter(f)
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
@@ -1,2 +1,2 @@

version in ThisBuild := "0.9.1"
version in ThisBuild := "0.10.0"

0 comments on commit 8ebdb25

Please sign in to comment.