Skip to content

Commit 26e310d

Browse files
committed
add Scala 2.13.6 to crossbuild
1 parent cdd3e9b commit 26e310d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ env:
8787
TRAVIS_JDK=adopt@~1.8.0-0
8888
- SCALA_VERSION=2.13.5
8989
TRAVIS_JDK=adopt@~1.11.0-0
90+
- SCALA_VERSION=2.13.6
91+
TRAVIS_JDK=adopt@~1.8.0-0
92+
- SCALA_VERSION=2.13.6
93+
TRAVIS_JDK=adopt@~1.11.0-0
9094

9195
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh
9296
install: jabba install "$TRAVIS_JDK" && jabba use "$_" && java -Xmx32m -version

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
val supportedScala211Versions = Seq("2.11.6", "2.11.7", "2.11.8", "2.11.11", "2.11.12")
5252
// Scala 2.12.[0-2] are not supported
5353
val supportedScala212Versions = (3 to 13).map(p => s"2.12.$p")
54-
val supportedScala213Versions = (0 to 5).map(p => s"2.13.$p")
54+
val supportedScala213Versions = (0 to 6).map(p => s"2.13.$p")
5555
supportedScala211Versions ++ supportedScala212Versions ++ supportedScala213Versions
5656
},
5757
scalaMajorVersion := CrossVersion.partialVersion(scalaVersion.value).get._2.toInt,

0 commit comments

Comments
 (0)