Skip to content

Commit 63fe458

Browse files
committed
Support Scala 2.12.11
1 parent 4f68efd commit 63fe458

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ env:
4242
4343
- SCALA_VERSION=2.12.10
4444
45+
- SCALA_VERSION=2.12.11
46+
47+
- SCALA_VERSION=2.12.11
48+
4549
- SCALA_VERSION=2.13.0
4650
4751
- SCALA_VERSION=2.13.0

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ It is often the case when this compiler plugin needs to be released for a newly
1515
* master, if no features or bug fixes were merged to master since the latest release
1616
* tag, if the master has unreleased features or bug fixes. In this case you will need to cherry pick the commit that adds support for the new Scala version.
1717
2. Create a file `version.sbt` containing `version in ThisBuild := "0.11"` which sets the version to be back-released. This will override the automatic version derivation from the git history. Alternatively you can `set version in ThisBuild := ...` in the command line.
18-
3. Change the Scala version to the release you want to perform, this is done by `++2.12.10` in the sbt command line.
18+
3. Change the Scala version to the release you want to perform, this is done by `++2.12.11` in the sbt command line.
1919
4. Publish the release by running `sbt publishSigned`. You will need Sonatype OSS repository rights to publish under `com.typesafe` organisation.
2020
5. Login to [Sonatype](https://oss.sonatype.org/) to close and release the repository.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ lazy val defaults = Seq(
4848
crossScalaVersions := {
4949
val earliest211 = 6
5050
val latest211 = 12
51-
val latest212 = 10
51+
val latest212 = 11
5252
val latest213 = 1
5353
val skipVersions = Set("2.11.9", "2.11.10")
5454
val scala211Versions =

0 commit comments

Comments
 (0)