Skip to content

Commit 89ec0da

Browse files
authored
Merge pull request #139 from SethTisue/scala-2.12.6
add Scala 2.12.6 to cross-build
2 parents b5db671 + f90ba15 commit 89ec0da

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ env:
3636
- SCALA_VERSION=2.12.3
3737
- SCALA_VERSION=2.12.4
3838
- SCALA_VERSION=2.12.5
39+
- SCALA_VERSION=2.12.6
3940
- SCALA_VERSION=2.13.0-M3
4041

4142
# there's no better way it seems.. https://github.com/travis-ci/travis-ci/issues/1519
@@ -54,6 +55,8 @@ matrix:
5455
env: SCALA_VERSION=2.12.4
5556
- jdk: openjdk6
5657
env: SCALA_VERSION=2.12.5
58+
- jdk: openjdk6
59+
env: SCALA_VERSION=2.12.6
5760
- jdk: openjdk6
5861
env: SCALA_VERSION=2.13.0-M3
5962

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.5` in the sbt command line.
18+
3. Change the Scala version to the release you want to perform, this is done by `++2.12.6` 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
@@ -51,7 +51,7 @@ lazy val defaults = Seq(
5151
scalaVersion := crossScalaVersions.value.last,
5252
crossScalaVersions := {
5353
val latest211 = 12
54-
val latest212 = 5
54+
val latest212 = 6
5555
val pre213 = List("M3")
5656
val skipVersions = Set("2.11.9", "2.11.10")
5757
val scala211Versions =

0 commit comments

Comments
 (0)