Skip to content

Commit bab4485

Browse files
authored
Add support for Scala 2.13.16 (#916)
* Add support for Scala 2.13.16 And remove support for Scala 2.13.14, to support only the last two patch versions of 2.13. Signed-off-by: Ignacio Lucero <[email protected]> * Update workflow to check the last two Scala 3 version supported To match the versions supported in the build.sbt. Signed-off-by: Ignacio Lucero <[email protected]> --------- Signed-off-by: Ignacio Lucero <[email protected]>
1 parent 24138e4 commit bab4485

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pr-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
scala:
1313
- 2.12.19
1414
- 2.12.20
15-
- 2.13.14
1615
- 2.13.15
17-
- 3.3.3
18-
- 3.5.1
16+
- 2.13.16
17+
- 3.3.4
18+
- 3.5.2
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-java@v4

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ developers := List(
2020
)
2121

2222
scalaVersion := "3.5.2"
23-
crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.14", "2.13.15", "3.3.4", "3.5.2")
23+
crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.15", "2.13.16", "3.3.4", "3.5.2")
2424
autoScalaLibrary := false
2525
crossVersion := CrossVersion.full
2626
crossTarget := {

0 commit comments

Comments
 (0)