Skip to content

Commit 781866b

Browse files
committed
bump Scala versions everywhere (2.12.0, 2.13.1)
1 parent 838180b commit 781866b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.travis.yml

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

77
scala:
88
- 2.11.12
9-
- 2.12.8
10-
- 2.13.0
9+
- 2.12.10
10+
- 2.13.1
1111

1212
env:
1313
- SCALAJS_VERSION= ADOPTOPENJDK=8
@@ -22,15 +22,15 @@ matrix:
2222
include:
2323

2424
# run migration test
25-
- scala: 2.12.8
25+
- scala: 2.12.10
2626
env: TEST_SCALAFIX=true ADOPTOPENJDK=8
2727

2828
# run binary compatibility test
29-
- scala: 2.12.8
29+
- scala: 2.12.10
3030
env: TEST_BINARY_COMPAT=true ADOPTOPENJDK=8
3131

3232
# run scalafmt
33-
- scala: 2.12.8
33+
- scala: 2.12.10
3434
env: TEST_SCALAFMT=true ADOPTOPENJDK=8
3535

3636
# Scala Native includes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The library also adds backported versions of new collection types, currently `sc
3939

4040
## Migration Tool
4141

42-
The migration rules use scalafix. Please see the [official installation instruction](https://scalacenter.github.io/scalafix/docs/users/installation.html) and, in particular, check that your full Scala version is supported (ex 2.12.8).
42+
The migration rules use scalafix. Please see the [official installation instruction](https://scalacenter.github.io/scalafix/docs/users/installation.html) and, in particular, check that your full Scala version is supported (ex 2.12.10).
4343

4444
```scala
4545
// project/plugins.sbt

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ lazy val root = project
4747
lazy val junit = libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
4848

4949
lazy val scala211 = "2.11.12"
50-
lazy val scala212 = "2.12.8"
51-
lazy val scala213 = "2.13.0"
50+
lazy val scala212 = "2.12.10"
51+
lazy val scala213 = "2.13.1"
5252

5353
/** Create an OSGi version range for standard Scala versioning
5454
* schemes that describes binary compatible versions. */

project/MultiScalaProject.scala

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

0 commit comments

Comments
 (0)