You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2016/03/10 02:57:28 UTC

kafka git commit: KAFKA-3357; Update to Scala 2.11.8

Repository: kafka
Updated Branches:
  refs/heads/trunk 818080312 -> ee9995583


KAFKA-3357; Update to Scala 2.11.8

Scala 2.11.8 has been released with a number of bug fixes:
* http://www.scala-lang.org/news/2.11.8/

There are a few important collection fixes:
* https://issues.scala-lang.org/browse/SI-9497
* https://github.com/scala/scala/pull/4714
* https://github.com/scala/scala/pull/4693

And also some pattern matcher fixes.

Author: Ismael Juma <is...@juma.me.uk>

Reviewers: Grant Henke, Ashish Singh

Closes #1032 from ijuma/kafka-3357-update-to-scala-2.11.8


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/ee999558
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/ee999558
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/ee999558

Branch: refs/heads/trunk
Commit: ee9995583ad74277464d3e9cb669a7c96c07f70b
Parents: 8180803
Author: Ismael Juma <is...@juma.me.uk>
Authored: Wed Mar 9 17:57:24 2016 -0800
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Wed Mar 9 17:57:24 2016 -0800

----------------------------------------------------------------------
 README.md                  | 4 ++--
 gradle/dependencies.gradle | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/ee999558/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index c2ed1a7..bc2ca3a 100644
--- a/README.md
+++ b/README.md
@@ -60,10 +60,10 @@ The release file can be found inside `./core/build/distributions/`.
 ### Cleaning the build ###
     ./gradlew clean
 
-### Running a task on a particular version of Scala (either 2.10.6 or 2.11.7) ###
+### Running a task on a particular version of Scala (either 2.10.6 or 2.11.8) ###
 *Note that if building the jars with a version other than 2.10, you need to set the `SCALA_BINARY_VERSION` variable or change it in `bin/kafka-run-class.sh` to run the quick start.*
 
-You can pass either the major version (eg 2.11) or the full version (eg 2.11.7):
+You can pass either the major version (eg 2.11) or the full version (eg 2.11.8):
 
     ./gradlew -PscalaVersion=2.11 jar
     ./gradlew -PscalaVersion=2.11 test

http://git-wip-us.apache.org/repos/asf/kafka/blob/ee999558/gradle/dependencies.gradle
----------------------------------------------------------------------
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index eebe007..3610430 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -47,7 +47,7 @@ versions += [
 
 // Add Scala version
 def defaultScala210Version = '2.10.6'
-def defaultScala211Version = '2.11.7'
+def defaultScala211Version = '2.11.8'
 if (hasProperty('scalaVersion')) {
   if (scalaVersion == '2.10') {
     versions["scala"] = defaultScala210Version