Skip to content

Commit bba9931

Browse files
committed
bump Scala versions: 2.12.16 (was .15), 3.1.3 (was .2)
1 parent 3dcd0ae commit bba9931

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
java: [8, 11, 17]
14-
scala: [2.11.12, 2.12.15, 2.13.8, 3.0.2]
14+
scala: [2.11.12, 2.12.16, 2.13.8, 3.0.2]
1515
platform: [jvm, js, native]
1616
mode: [normal]
1717
exclude:
@@ -27,27 +27,27 @@ jobs:
2727
platform: native
2828
include:
2929
- java: 8
30-
scala: 2.12.15
30+
scala: 2.12.16
3131
mode: testScalafix
3232
platform: jvm
3333
- java: 8
34-
scala: 2.12.15
34+
scala: 2.12.16
3535
mode: testBinaryCompat
3636
platform: jvm
3737
- java: 8
38-
scala: 2.12.15
38+
scala: 2.12.16
3939
mode: testScalafmt
4040
platform: jvm
4141
- java: 8
42-
scala: 2.12.15
42+
scala: 2.12.16
4343
mode: headerCheck
4444
platform: jvm
4545
- java: 11
46-
scala: 2.12.15
46+
scala: 2.12.16
4747
mode: normal
4848
platform: jvm
4949
- java: 17
50-
scala: 2.12.15
50+
scala: 2.12.16
5151
mode: normal
5252
platform: jvm
5353
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ And, it includes support for some non-collections classes such as the `@nowarn`
4949

5050
## Migration rules
5151

52-
The migration rules use scalafix. Please see the [official installation instructions](https://scalacenter.github.io/scalafix/docs/users/installation.html) and, in particular, check that your full Scala version is supported (ex 2.12.15).
52+
The migration rules use scalafix. Please see the [official installation instructions](https://scalacenter.github.io/scalafix/docs/users/installation.html) and, in particular, check that your full Scala version is supported (ex 2.12.16).
5353

5454
```scala
5555
// project/plugins.sbt

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ lazy val root = project
5151
lazy val junit = libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test
5252

5353
lazy val scala211 = "2.11.12"
54-
lazy val scala212 = "2.12.15"
54+
lazy val scala212 = "2.12.16"
5555
lazy val scala213 = "2.13.8"
5656
lazy val scala30 = "3.0.2"
57-
lazy val scala31 = "3.1.2"
57+
lazy val scala31 = "3.1.3"
5858

5959
lazy val compat = new MultiScalaCrossProject(
6060
"compat",

project/MultiScalaProject.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import java.io.File
2121
* _.settings(...) // Project => Project (scala version independent configurations)
2222
* )
2323
*
24-
* // instanciate a sbt project
24+
* // instantiate a sbt project
2525
* lazy val myProject211 = myProject("2.11.12", _.settings(...) /* scala version dependent configurations */)
26-
* lazy val myProject212 = myProject("2.12.14" , _.settings(...))
26+
* lazy val myProject212 = myProject("2.12.16" , _.settings(...))
2727
* // ...
2828
* }}}
2929
*/

0 commit comments

Comments
 (0)