Skip to content

Commit

Permalink
Bump the version number, add in the change log. Bump the upstream ver…
Browse files Browse the repository at this point in the history
…sion numbers
  • Loading branch information
ianoc committed Jul 3, 2014
1 parent c480067 commit 6eaa45f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 5 deletions.
38 changes: 38 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Scalding #

### Version 0.11.0 ###
* REPL: Add toIterator (and related methods): https://github.com/twitter/scalding/pull/929
* Fix the build to use the shared module method: https://github.com/twitter/scalding/pull/938
* Clean up the UniqueID stuff, to avoid plumbing it everywhere: https://github.com/twitter/scalding/pull/937
* TypedPipe.from(List).distinct fails: https://github.com/twitter/scalding/pull/935
* Clean up ExecutionContext a bit: https://github.com/twitter/scalding/pull/933
* Fix Issue 932: no-op Jobs should not throw: https://github.com/twitter/scalding/pull/934
* Use Execution to run flows in REPL: https://github.com/twitter/scalding/pull/928
* Snapshot a pipe in the REPL: https://github.com/twitter/scalding/pull/918
* Add support for AppJar in Config: https://github.com/twitter/scalding/pull/924
* Fix LzoTextLine as a TypedSource: https://github.com/twitter/scalding/pull/921
* Use externalizer in BijectedSourceSink: https://github.com/twitter/scalding/pull/926
* Add an Executor to run flows without a Job: https://github.com/twitter/scalding/pull/915
* This handles the case where scalding will save out a tsv and re-use it down stream leading to issues where the types are not strings: https://github.com/twitter/scalding/pull/913
* Fix DailySuffixTsv for testability, remove leaked DailySuffixTsv: https://github.com/twitter/scalding/pull/919
* Add a Config class to make configuration understandable: https://github.com/twitter/scalding/pull/914
* Integrate the repl completely into scald.rb. Fixup scald-rb for better hdfs-local mode now with our provides: https://github.com/twitter/scalding/pull/902
* Add some auto-reformats: https://github.com/twitter/scalding/pull/911
* Update JDBCSource: https://github.com/twitter/scalding/pull/898
* Allow tests for typed delimited by fixing swallowed bug: https://github.com/twitter/scalding/pull/910
* Add Hadoop platform test to enable unit testing for Hadoop semantics: https://github.com/twitter/scalding/pull/858
* Some minor improvements to typed joining code: https://github.com/twitter/scalding/pull/909
* Fix #906: https://github.com/twitter/scalding/pull/908
* Run the test target, so the tests are reformatted: https://github.com/twitter/scalding/pull/907
* Enable scalariform: https://github.com/twitter/scalding/pull/905
* Simplify "scald-repl.sh": https://github.com/twitter/scalding/pull/901
* Typed Tutorial: https://github.com/twitter/scalding/pull/897
* Adding a test for the scalding repl: https://github.com/twitter/scalding/pull/890
* Properly close tuple iterator in test framework.: https://github.com/twitter/scalding/pull/896
* Add constructors to ValuePipe: https://github.com/twitter/scalding/pull/893
* contraMap and andThen on TypedSink/TypedSource: https://github.com/twitter/scalding/pull/892
* Tiny fix to use an ImplicitBijection rather than Bijection: https://github.com/twitter/scalding/pull/887
* Feature/bijected source sink: https://github.com/twitter/scalding/pull/886
* Fix intersection equality error: https://github.com/twitter/scalding/pull/878
* Add DailySuffixTypedTsv and HourlySuffixTypedTsv.: https://github.com/twitter/scalding/pull/873
* add stepListner register support in Scalding: https://github.com/twitter/scalding/pull/875
* Backport Meatlocker: https://github.com/twitter/scalding/pull/571

### Version 0.10.0 ###
* Upgrade cascading to 2.5.4, cascading jdbc to 2.5.2
* Adding an hdfs mode for the Scalding REPL
Expand Down
8 changes: 4 additions & 4 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ object ScaldingBuild extends Build {
Some(subProj)
.filterNot(unreleasedModules.contains(_))
.map {
s => "com.twitter" % ("scalding-" + s + "_2.9.3") % "0.10.0"
s => "com.twitter" % ("scalding-" + s + "_2.9.3") % "0.11.0"
}

def module(name: String) = {
Expand All @@ -192,9 +192,9 @@ object ScaldingBuild extends Build {
System.getenv.asScala.getOrElse("SCALDING_CASCADING_JDBC_VERSION", "2.5.2")

val hadoopVersion = "1.2.1"
val algebirdVersion = "0.5.0"
val bijectionVersion = "0.6.2"
val chillVersion = "0.3.6"
val algebirdVersion = "0.7.0"
val bijectionVersion = "0.6.3"
val chillVersion = "0.4.0"
val slf4jVersion = "1.6.6"

lazy val scaldingCore = module("core").settings(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

version in ThisBuild := "0.10.0"
version in ThisBuild := "0.11.0"

0 comments on commit 6eaa45f

Please sign in to comment.