Skip to content

Commit a02702e

Browse files
committed
Add support for Scala 2.12.13
1 parent 8ad1e88 commit a02702e

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
@@ -50,6 +50,10 @@ env:
5050
TRAVIS_JDK=adopt@~1.8.0-0
5151
- SCALA_VERSION=2.12.12
5252
TRAVIS_JDK=adopt@~1.11.0-0
53+
- SCALA_VERSION=2.12.13
54+
TRAVIS_JDK=adopt@~1.8.0-0
55+
- SCALA_VERSION=2.12.13
56+
TRAVIS_JDK=adopt@~1.11.0-0
5357
- SCALA_VERSION=2.13.0
5458
TRAVIS_JDK=adopt@~1.8.0-0
5559
- SCALA_VERSION=2.13.0

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ 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
1. 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-
1. Publish the release by running `SONATYPE_USERNAME=xxx SONATYPE_PASSWORD=xxx sbt ++2.12.12 publishSigned sonatypeBundleRelease` (with the appropriate credentials and scala version). You will need Sonatype OSS repository rights to publish under `com.typesafe` organisation.
18+
1. Publish the release by running `SONATYPE_USERNAME=xxx SONATYPE_PASSWORD=xxx sbt ++2.12.13 publishSigned sonatypeBundleRelease` (with the appropriate credentials and scala version). You will need Sonatype OSS repository rights to publish under `com.typesafe` organisation.

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 = 12
51+
val latest212 = 13
5252
val latest213 = 4
5353
val skipVersions = Set("2.11.9", "2.11.10")
5454
val scala211Versions =

0 commit comments

Comments
 (0)