Skip to content

Commit 75c999f

Browse files
authored
bump Scala 2.12 versions to 2.12.16 (was .15) (#544)
1 parent d77167d commit 75c999f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ 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"
5757
lazy val scala31 = "3.1.3"

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)