diff --git a/.travis.yml b/.travis.yml index bb625de85..f74d18cd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,37 +28,31 @@ jobs: name: "Run tests with Scala 2.12 and AdoptOpenJDK 11" script: scripts/test-code.sh env: - - SCALA_VERSION=2.12.13 + - SCALA_VERSION=2.12.14 - TRAVIS_JDK=11 - name: "Run tests with Scala 2.13 and AdoptOpenJDK 11" script: scripts/test-code.sh env: - - SCALA_VERSION=2.13.5 + - SCALA_VERSION=2.13.6 - TRAVIS_JDK=11 - name: "Run tests with Scala 2.12 and AdoptOpenJDK 8" script: scripts/test-code.sh env: - - SCALA_VERSION=2.12.13 + - SCALA_VERSION=2.12.14 - TRAVIS_JDK=8 - name: "Run tests with Scala 2.13 and AdoptOpenJDK 8" script: scripts/test-code.sh env: - - SCALA_VERSION=2.13.5 + - SCALA_VERSION=2.13.6 - TRAVIS_JDK=8 - name: "Run tests with Scala 3 and AdoptOpenJDK 8" script: scripts/test-code.sh env: - - SCALA_VERSION=3.0.0-RC2 - - TRAVIS_JDK=8 - - - name: "Run tests with Scala 3 and AdoptOpenJDK 8" - script: scripts/test-code.sh - env: - - SCALA_VERSION=3.0.0-RC3 + - SCALA_VERSION=3.0.0 - TRAVIS_JDK=8 - stage: publish diff --git a/build.sbt b/build.sbt index b606fa0f7..48567e1f1 100644 --- a/build.sbt +++ b/build.sbt @@ -95,7 +95,7 @@ val scalacOpts = Seq( "-Ywarn-macros:after" ) -val silencerVersion = "1.7.3" +val silencerVersion = "1.7.5" ThisBuild / libraryDependencies ++= { if (isScala3.value) Nil diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 168ba1745..3f363e9dc 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,6 +1,6 @@ object Dependencies { // scalaVersion needs to be kept in sync with travis-ci - val Scala212 = "2.12.13" - val Scala213 = "2.13.5" - val Scala3 = Seq("3.0.0-RC2", "3.0.0-RC3") + val Scala212 = "2.12.14" + val Scala213 = "2.13.6" + val Scala3 = Seq("3.0.0") }