Skip to content

Update Scala 2.12 to minimum Scala Native supports #415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ language: scala

scala:
- 2.11.12
- 2.12.12
- 2.12.13
- 2.13.4
- 3.0.0-M3

Expand All @@ -23,15 +23,15 @@ matrix:
include:

# run migration test
- scala: 2.12.12
- scala: 2.12.13
env: TEST_SCALAFIX=true ADOPTOPENJDK=8

# run binary compatibility test
- scala: 2.12.12
- scala: 2.12.13
env: TEST_BINARY_COMPAT=true ADOPTOPENJDK=8

# run scalafmt
- scala: 2.12.12
- scala: 2.12.13
env: TEST_SCALAFMT=true ADOPTOPENJDK=8

exclude:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ And, it includes support for some non-collections classes such as the `@nowarn`

## Migration rules

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

```scala
// project/plugins.sbt
Expand Down
2 changes: 1 addition & 1 deletion project/MultiScalaProject.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.io.File
*
* // instanciate a sbt project
* lazy val myProject211 = myProject("2.11.12", _.settings(...) /* scala version dependent configurations */)
* lazy val myProject212 = myProject("2.12.12" , _.settings(...))
* lazy val myProject212 = myProject("2.12.13" , _.settings(...))
* // ...
* }}}
*/
Expand Down