Skip to content

Commit 8d334fc

Browse files
committed
Update Scala 2.12 to minimum Scala Native supports
1 parent 5416c4a commit 8d334fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ language: scala
66

77
scala:
88
- 2.11.12
9-
- 2.12.12
9+
- 2.12.13
1010
- 2.13.4
1111
- 3.0.0-M3
1212

@@ -23,15 +23,15 @@ matrix:
2323
include:
2424

2525
# run migration test
26-
- scala: 2.12.12
26+
- scala: 2.12.13
2727
env: TEST_SCALAFIX=true ADOPTOPENJDK=8
2828

2929
# run binary compatibility test
30-
- scala: 2.12.12
30+
- scala: 2.12.13
3131
env: TEST_BINARY_COMPAT=true ADOPTOPENJDK=8
3232

3333
# run scalafmt
34-
- scala: 2.12.12
34+
- scala: 2.12.13
3535
env: TEST_SCALAFMT=true ADOPTOPENJDK=8
3636

3737
exclude:

README.md

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

5252
## Migration rules
5353

54-
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.12).
54+
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.13).
5555

5656
```scala
5757
// project/plugins.sbt

project/MultiScalaProject.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import java.io.File
2323
*
2424
* // instanciate a sbt project
2525
* lazy val myProject211 = myProject("2.11.12", _.settings(...) /* scala version dependent configurations */)
26-
* lazy val myProject212 = myProject("2.12.12" , _.settings(...))
26+
* lazy val myProject212 = myProject("2.12.13" , _.settings(...))
2727
* // ...
2828
* }}}
2929
*/

0 commit comments

Comments
 (0)