Skip to content

Commit

Permalink
Prepare for release of 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
isnotinvain committed Feb 4, 2015
1 parent 2d0417c commit 1261a10
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Scalding #

### Version 0.13.1 ###
* Back out 4 changes to be binary compatible: https://github.com/twitter/scalding/pull/1187
* Use java.util.Random instead of scala.util.Random: https://github.com/twitter/scalding/pull/1186
* Add Execution.failed: https://github.com/twitter/scalding/pull/1185
* Using a ConcurrentHashMap instead of a WeakHashMap to make the Stats behave in a correct manner: https://github.com/twitter/scalding/pull/1184
* Add applicative for Execution: https://github.com/twitter/scalding/pull/1181

### Version 0.13.0 ###
* Covert LzoTextDelimited to Cascading scheme.: https://github.com/twitter/scalding/pull/1179
* Make TraceUtil support versions of cascading older than 2.6: https://github.com/twitter/scalding/pull/1180
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.13.0`
Current version: `0.13.1`

## Word Count

Expand Down
3 changes: 2 additions & 1 deletion scalding-core/src/main/scala/com/twitter/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ package object scalding {
type KeyedList[K, +V] = com.twitter.scalding.typed.KeyedList[K, V]
type ValuePipe[+T] = com.twitter.scalding.typed.ValuePipe[T]
type Grouped[K, +V] = com.twitter.scalding.typed.Grouped[K, V]

/**
* Make sure this is in sync with version.sbt
*/
val scaldingVersion: String = "0.13.0"
val scaldingVersion: String = "0.13.1"

object RichPathFilter {
implicit def toRichPathFilter(f: PathFilter) = new RichPathFilter(f)
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.13.0"
version in ThisBuild := "0.13.1"

0 comments on commit 1261a10

Please sign in to comment.