You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2022/08/08 22:26:07 UTC

[kafka] branch trunk updated: MINOR: Update scala version in bin scripts to 2.13.8 (#12477)

This is an automated email from the ASF dual-hosted git repository.

ijuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 36bfc3a254c MINOR: Update scala version in bin scripts to 2.13.8 (#12477)
36bfc3a254c is described below

commit 36bfc3a254c71498830188b207abfdc420525397
Author: Orsák Maroš <30...@users.noreply.github.com>
AuthorDate: Tue Aug 9 00:25:58 2022 +0200

    MINOR: Update scala version in bin scripts to 2.13.8 (#12477)
    
    This PR updates scala versions inside `bin/scripts` (i.e., `kafka-run-class.sh`).
    #12273 only modified `gradle.properties`.
    
    Reviewers: Ismael Juma <is...@juma.me.uk>
    
    Signed-off-by: morsak <xo...@stud.fit.vutbr.cz>
---
 bin/kafka-run-class.sh          | 2 +-
 bin/windows/kafka-run-class.bat | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/kafka-run-class.sh b/bin/kafka-run-class.sh
index 490f930b8cc..a9096ea0216 100755
--- a/bin/kafka-run-class.sh
+++ b/bin/kafka-run-class.sh
@@ -48,7 +48,7 @@ should_include_file() {
 base_dir=$(dirname $0)/..
 
 if [ -z "$SCALA_VERSION" ]; then
-  SCALA_VERSION=2.13.6
+  SCALA_VERSION=2.13.8
   if [[ -f "$base_dir/gradle.properties" ]]; then
     SCALA_VERSION=`grep "^scalaVersion=" "$base_dir/gradle.properties" | cut -d= -f 2`
   fi
diff --git a/bin/windows/kafka-run-class.bat b/bin/windows/kafka-run-class.bat
index 26ef84a4f5c..df1e20ba11c 100755
--- a/bin/windows/kafka-run-class.bat
+++ b/bin/windows/kafka-run-class.bat
@@ -27,7 +27,7 @@ set BASE_DIR=%CD%
 popd
 
 IF ["%SCALA_VERSION%"] EQU [""] (
-  set SCALA_VERSION=2.13.6
+  set SCALA_VERSION=2.13.8
 )
 
 IF ["%SCALA_BINARY_VERSION%"] EQU [""] (