Skip to content

Commit 9c1f8b1

Browse files
authored
bump Scala versions (2.13.5, 3.0.0-RC2) (#276)
2 parents 4a79d13 + 9a74342 commit 9c1f8b1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ language: scala
55
scala:
66
- 2.11.12
77
- 2.12.13
8-
- 2.13.4
9-
- 3.0.0-RC1
8+
- 2.13.5
9+
- 3.0.0-RC2
1010
env:
1111
- ADOPTOPENJDK=8
1212
- ADOPTOPENJDK=11

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ libraryDependencies ++= Dependencies.scalaLogging(scalaVersion.value, isDotty.va
1313
initialCommands := """|import com.typesafe.scalalogging._
1414
|import org.slf4j.{ Logger => Underlying, _ }""".stripMargin
1515

16-
unmanagedSourceDirectories in Compile ++= {
17-
val sourceDir = (sourceDirectory in Compile).value
16+
Compile / unmanagedSourceDirectories ++= {
17+
val sourceDir = (Compile / sourceDirectory).value
1818
val extraFilesOpt = CrossVersion.partialVersion(scalaVersion.value) match {
1919
case Some((2, _)) => Some(sourceDir / "scala-2.x")
2020
case Some((3, _)) => Some(sourceDir / "scala-3.x")

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import sbt._
22

33
object Version {
44
val logback = "1.2.3"
5-
val mockito = "3.2.6.0"
6-
val scalaTest = "3.2.6"
5+
val mockito = "3.2.7.0"
6+
val scalaTest = "3.2.7"
77
val slf4j = "1.7.30"
88
}
99

0 commit comments

Comments
 (0)