From a02702e32ec9aa3ca3ab1004bb8a7e7b01ff0652 Mon Sep 17 00:00:00 2001 From: Marcos Pereira Date: Wed, 13 Jan 2021 10:43:24 -0500 Subject: [PATCH] Add support for Scala 2.12.13 --- .travis.yml | 4 ++++ RELEASING.md | 2 +- build.sbt | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b8a8060..f8e220b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,10 @@ env: TRAVIS_JDK=adopt@~1.8.0-0 - SCALA_VERSION=2.12.12 TRAVIS_JDK=adopt@~1.11.0-0 + - SCALA_VERSION=2.12.13 + TRAVIS_JDK=adopt@~1.8.0-0 + - SCALA_VERSION=2.12.13 + TRAVIS_JDK=adopt@~1.11.0-0 - SCALA_VERSION=2.13.0 TRAVIS_JDK=adopt@~1.8.0-0 - SCALA_VERSION=2.13.0 diff --git a/RELEASING.md b/RELEASING.md index 1465fff..cb82f9f 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -15,4 +15,4 @@ It is often the case when this compiler plugin needs to be released for a newly * master, if no features or bug fixes were merged to master since the latest release * 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. 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. -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. +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. diff --git a/build.sbt b/build.sbt index 1ba4d35..74c6bd4 100644 --- a/build.sbt +++ b/build.sbt @@ -48,7 +48,7 @@ lazy val defaults = Seq( crossScalaVersions := { val earliest211 = 6 val latest211 = 12 - val latest212 = 12 + val latest212 = 13 val latest213 = 4 val skipVersions = Set("2.11.9", "2.11.10") val scala211Versions =