Skip to content

Commit 4c7ad0a

Browse files
committed
MINOR: Update Scala to 2.13.5
This includes a fix from Chia-Ping that removes tuple allocations when Map.forKeyValue is used.
1 parent 9e799cb commit 4c7ad0a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bin/kafka-run-class.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ should_include_file() {
4848
base_dir=$(dirname $0)/..
4949

5050
if [ -z "$SCALA_VERSION" ]; then
51-
SCALA_VERSION=2.13.4
51+
SCALA_VERSION=2.13.5
5252
if [[ -f "$base_dir/gradle.properties" ]]; then
5353
SCALA_VERSION=`grep "^scalaVersion=" "$base_dir/gradle.properties" | cut -d= -f 2`
5454
fi

bin/windows/kafka-run-class.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ set BASE_DIR=%CD%
2727
popd
2828

2929
IF ["%SCALA_VERSION%"] EQU [""] (
30-
set SCALA_VERSION=2.13.4
30+
set SCALA_VERSION=2.13.5
3131
)
3232

3333
IF ["%SCALA_BINARY_VERSION%"] EQU [""] (

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ group=org.apache.kafka
2121
# - tests/kafkatest/version.py (variable DEV_VERSION)
2222
# - kafka-merge-pr.py
2323
version=2.9.0-SNAPSHOT
24-
scalaVersion=2.13.4
24+
scalaVersion=2.13.5
2525
task=build
2626
org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC
2727
org.gradle.parallel=true

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ext {
2828

2929
// Add Scala version
3030
def defaultScala212Version = '2.12.13'
31-
def defaultScala213Version = '2.13.4'
31+
def defaultScala213Version = '2.13.5'
3232
if (hasProperty('scalaVersion')) {
3333
if (scalaVersion == '2.12') {
3434
versions["scala"] = defaultScala212Version

0 commit comments

Comments
 (0)