From 1f4faca9c9373ed590a4d43e6ce0b1e52b1a3c2b Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 30 Oct 2024 13:19:42 +0100 Subject: [PATCH] Update Scala to 2.13.15 --- README.md | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ae2c437..fbd4ebc 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ Our solution to deploy Scala 2.13 code to Flink, until it's officially supported ```bash rm $FLINK_HOME/lib/flink-scala*.jar -wget https://repo1.maven.org/maven2/pl/touk/flink-scala-2-13_2.13/1.1.1/flink-scala-2-13_2.13-1.1.1-assembly.jar -O $FLINK_HOME/lib/flink-scala-2-13_2.13-1.1.1-assembly.jar +wget https://repo1.maven.org/maven2/pl/touk/flink-scala-2-13_2.13/1.1.2/flink-scala-2-13_2.13-1.1.2-assembly.jar -O $FLINK_HOME/lib/flink-scala-2-13_2.13-1.1.1-assembly.jar ``` ```scala -libraryDependencies += "pl.touk" %% "flink-scala-2-13" % "1.1.1" +libraryDependencies += "pl.touk" %% "flink-scala-2-13" % "1.1.2" ``` ## Publishing diff --git a/build.sbt b/build.sbt index 544364e..c1532d5 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ -version := "1.1.1" +version := "1.1.2" -scalaVersion := "2.13.12" +scalaVersion := "2.13.15" name := "flink-scala-2.13"