Skip to content

Commit b8746ed

Browse files
Merge pull request slick#2042 from pjfanning/scala-2.13
scala 2.13.0 build
2 parents 29ff577 + 77c1bb4 commit b8746ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ addons:
2727
scala:
2828
- 2.11.12
2929
- 2.12.8
30-
- 2.13.0-RC2
30+
- 2.13.0
3131
script:
3232
- admin/build.sh
3333
cache:

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ object Dependencies {
66
// NOTE: remember to change the version numbers in the sample projects
77
// when changing them here
88

9-
val scalaVersions = Seq("2.11.12", "2.12.8", "2.13.0-RC2") // When updating these also update .travis.yml and appveyor.yml
9+
val scalaVersions = Seq("2.11.12", "2.12.8", "2.13.0") // When updating these also update .travis.yml and appveyor.yml
1010

1111
val slf4j = "org.slf4j" % "slf4j-api" % "1.7.26"
1212
val typesafeConfig = "com.typesafe" % "config" % "1.3.4"
@@ -22,7 +22,7 @@ object Dependencies {
2222
"com.novocode" % "junit-interface" % "0.11"
2323
)
2424
def scalaTestFor(scalaVersion: String) = {
25-
val v = "3.0.8-RC4"
25+
val v = "3.0.8"
2626
"org.scalatest" %% "scalatest" % v
2727
}
2828
val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"

samples/hello-slick/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ libraryDependencies ++= List(
44
"com.typesafe.slick" %% "slick" % "3.3.0",
55
"org.slf4j" % "slf4j-nop" % "1.7.26",
66
"com.h2database" % "h2" % "1.4.199",
7-
"org.scalatest" %% "scalatest" % "3.0.8-RC4" % Test
7+
"org.scalatest" %% "scalatest" % "3.0.8" % Test
88
)
99

1010
scalacOptions += "-deprecation"

0 commit comments

Comments
 (0)