Skip to content

Commit

Permalink
support for Scala 2.13.7 is also dropped, now starting from 2.13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tribbloid committed Aug 22, 2023
1 parent 9473845 commit b94a12c
Show file tree
Hide file tree
Showing 56 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
max-parallel: 2
fail-fast: false
matrix:
scalaVersion: ["2.13.7", "2.13.8", "2.13.9", "2.13.10", "2.13.11"]
scalaVersion: [2.13.8", "2.13.9", "2.13.10", "2.13.11"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
max-parallel: 2
fail-fast: false
matrix:
scalaVersion: [2.13.7", "2.13.8", "2.13.9", "2.13.10", "2.13.11"]
scalaVersion: ["2.13.8", "2.13.9", "2.13.10", "2.13.11"]

continue-on-error: ${{ contains(needs.vars.outputs.experimentalScalaVersions, matrix.scalaVersion) }}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ allprojects {
}

val vn = VersionNumber.parse(vs.scalaV)
val supportedPatchVs = listOf(6, 7)
val supportedPatchVs = listOf(8, 9, 10, 11)

for (from in supportedPatchVs) {
if (vn.micro >= from) {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

scalaGroup=org.scala-lang

#scalaVersion=2.13.7
#scalaVersion=2.13.10
scalaVersion=2.13.11

Expand Down

0 comments on commit b94a12c

Please sign in to comment.