Skip to content

Commit 202370b

Browse files
committed
Update Scala and Spark versions.
1 parent 8968adb commit 202370b

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,19 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
scala: [ 2.11.12, 2.12.20, 2.13.15 ]
23-
spark: [ 2.4.8, 3.4.3, 3.5.3 ]
22+
scala: [ 2.11.12, 2.12.20, 2.13.16 ]
23+
spark: [ 2.4.8, 3.4.4, 3.5.5 ]
2424
exclude:
2525
- scala: 2.11.12
26-
spark: 3.4.3
26+
spark: 3.4.4
2727
- scala: 2.11.12
28-
spark: 3.5.3
28+
spark: 3.5.5
2929
- scala: 2.12.20
3030
spark: 2.4.8
31-
- scala: 2.13.15
31+
- scala: 2.13.16
3232
spark: 2.4.8
33+
- scala: 2.13.16
34+
spark: 3.4.4
3335
name: Spark ${{matrix.spark}} on Scala ${{matrix.scala}}
3436
steps:
3537
- name: Checkout code

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ Creating an uber jar for Cobrix is very easy. Steps to build:
308308
sbt -DSPARK_VERSION="3.4.4" ++2.12.20 assembly
309309

310310
# For Scala 2.13
311-
sbt -DSPARK_VERSION="3.3.4" ++2.13.15 assembly
312-
sbt -DSPARK_VERSION="3.4.4" ++2.13.15 assembly
311+
sbt -DSPARK_VERSION="3.3.4" ++2.13.16 assembly
312+
sbt -DSPARK_VERSION="3.4.4" ++2.13.16 assembly
313313
```
314314

315315
You can collect the uber jar of `spark-cobol` either at
@@ -330,7 +330,7 @@ $ spark-shell --jars spark-cobol_2.12_3.3-2.8.3-SNAPSHOT-bundle.jar
330330
> ```sh
331331
> sbt ++2.11.12 assembly
332332
> sbt ++2.12.20 assembly
333-
> sbt ++2.13.15 assembly
333+
> sbt ++2.13.16 assembly
334334
> ```
335335

336336
## Other Features

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import com.github.sbt.jacoco.report.JacocoReportSettings
2121

2222
lazy val scala211 = "2.11.12"
2323
lazy val scala212 = "2.12.20"
24-
lazy val scala213 = "2.13.15"
24+
lazy val scala213 = "2.13.16"
2525

2626
ThisBuild / organization := "za.co.absa.cobrix"
2727

examples/spark-cobol-app/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
ThisBuild / organization := "com.example"
1818
ThisBuild / name := "spark-cobol-app"
1919
ThisBuild / version := "0.1.0-SNAPSHOT"
20-
ThisBuild / scalaVersion := "2.12.17"
20+
ThisBuild / scalaVersion := "2.12.20"
2121

22-
val sparkVersion = "3.5.3"
22+
val sparkVersion = "3.5.5"
2323
val sparkCobolVersion = "2.8.2"
2424
val scalatestVersion = "3.2.14"
2525

examples/spark-cobol-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727

2828
<properties>
2929
<encoding>UTF-8</encoding>
30-
<scala.version>2.12.17</scala.version>
30+
<scala.version>2.12.20</scala.version>
3131
<scala.compat.version>2.12</scala.compat.version>
3232
<scalatest.version>3.2.14</scalatest.version>
33-
<spark.version>3.5.3</spark.version>
33+
<spark.version>3.5.5</spark.version>
3434
<spark.cobol.version>2.8.2</spark.cobol.version>
3535
</properties>
3636

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ object Dependencies {
2727
private val mockitoVersion = "4.11.0"
2828

2929
private val defaultSparkVersionForScala211 = "2.4.8"
30-
private val defaultSparkVersionForScala212 = "3.4.3"
31-
private val defaultSparkVersionForScala213 = "3.5.3"
30+
private val defaultSparkVersionForScala212 = "3.4.4"
31+
private val defaultSparkVersionForScala213 = "3.5.5"
3232

3333
def sparkFallbackVersion(scalaVersion: String): String = {
3434
if (scalaVersion.startsWith("2.11.")) {

0 commit comments

Comments
 (0)