Skip to content

Commit 0594cf3

Browse files
committed
feat: Scala 2.12 support dropped in order to use latest pureconfig
1 parent 302afd3 commit 0594cf3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
scala-version: [ 2.12.13, 2.13.8 ]
10+
scala-version: [ 2.13.8 ]
1111
steps:
1212
- uses: actions/[email protected]
1313
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
scala-version: [ 2.12.13, 2.13.8 ]
10+
scala-version: [ 2.13.8 ]
1111
steps:
1212
- uses: actions/[email protected]
1313
with:

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
ext {
3131
def scalaVersionEnv = System.getenv("SCALA_VERSION")
3232

33-
scalaVersionFull = scalaVersionEnv != null ? scalaVersionEnv : "2.12.13"
33+
scalaVersionFull = scalaVersionEnv != null ? scalaVersionEnv : "2.13.8"
3434
scalaVersion = "${scalaVersionFull}".split("\\.").dropRight(1).join(".")
3535

3636
bytesVersion = "2.2.0"
@@ -40,7 +40,7 @@ allprojects {
4040
fs2Version = "2.5.3"
4141
metricsVersion = "3.0.4"
4242
protobufVersion = "3.25.8"
43-
pureconfigVersion = "0.17.8"
43+
pureconfigVersion = "0.17.9"
4444
scalapbVersion = "0.11.18"
4545
scalapbJson4sVersion = "0.11.1"
4646
typesafeConfigVersion = "1.4.3"

0 commit comments

Comments
 (0)