Skip to content

Commit 95701f9

Browse files
authored
Merge pull request #415 from lolgab/update-scala-2-12-13
Update Scala 2.12 to minimum Scala Native supports
2 parents f1eff6f + 8d334fc commit 95701f9

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-M2
1212
- 3.0.0-M3
@@ -24,15 +24,15 @@ matrix:
2424
include:
2525

2626
# run migration test
27-
- scala: 2.12.12
27+
- scala: 2.12.13
2828
env: TEST_SCALAFIX=true ADOPTOPENJDK=8
2929

3030
# run binary compatibility test
31-
- scala: 2.12.12
31+
- scala: 2.12.13
3232
env: TEST_BINARY_COMPAT=true ADOPTOPENJDK=8
3333

3434
# run scalafmt
35-
- scala: 2.12.12
35+
- scala: 2.12.13
3636
env: TEST_SCALAFMT=true ADOPTOPENJDK=8
3737

3838
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)