Skip to content

Commit f8537cb

Browse files
committed
Scala 2.12.8 (was 2.12.6)
1 parent 1e247c8 commit f8537cb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.travis.yml

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

33
scala:
44
- 2.11.12
5-
- 2.12.6
5+
- 2.12.8
66
- 2.13.0-M5
77
jdk:
88
- oraclejdk8
@@ -33,17 +33,17 @@ matrix:
3333

3434
# run migration test
3535
- jdk: oraclejdk8
36-
scala: 2.12.6
36+
scala: 2.12.8
3737
env: TEST_SCALAFIX=true
3838

3939
# run binary compatibility test
4040
- jdk: oraclejdk8
41-
scala: 2.12.6
41+
scala: 2.12.8
4242
env: TEST_BINARY_COMPAT=true
4343

4444
# run scalafmt
4545
- jdk: oraclejdk8
46-
scala: 2.12.6
46+
scala: 2.12.8
4747
env: TEST_SCALAFMT=true
4848

4949
before_script:

README.md

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

3939
## Migration Tool
4040

41-
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.6).
41+
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).
4242

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

admin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jdk:
2828
2929
scala:
3030
- 2.11.12
31-
- 2.12.6
31+
- 2.12.8
3232
3333
env:
3434
global:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ lazy val root = project
3030
lazy val junit = libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
3131

3232
lazy val scala211 = "2.11.12"
33-
lazy val scala212 = "2.12.6"
33+
lazy val scala212 = "2.12.8"
3434
lazy val scalaJs213 = "2.13.0-M5" // Scala.js does no have -pre
3535

3636
lazy val scala213 = "2.13.0-M5"

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.6" , _.settings(...))
25+
* lazy val myProject212 = myProject("2.12.8" , _.settings(...))
2626
* // ...
2727
* }}}
2828
*/

0 commit comments

Comments
 (0)