Skip to content

Commit

Permalink
Merge pull request #206 from scala-steward/update/scala-library-2.13.8
Browse files Browse the repository at this point in the history
Update scala-library to 2.13.8
  • Loading branch information
mkurz authored Mar 3, 2022
2 parents f6539cb + 23cce34 commit 4b803ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- stage: deploy
name: "Publish artifacts to Bintray"
script: sbt +publish
scala: 2.13.5
scala: 2.13.8
env:
- TRAVIS_JDK=11
# encrypt with: travis encrypt --pro BINTRAY_USER=...
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Dependencies {
// scalaVersion needs to be kept in sync with travis-ci
val Scala212 = "2.12.13"
val Scala213 = "2.13.5"
val Scala213 = "2.13.8"
val ScalaVersions = Seq(Scala212, Scala213)

val PlayVersion = sys.props.getOrElse("play.version", sys.env.getOrElse("PLAY_VERSION", "2.8.0"))
Expand Down
4 changes: 2 additions & 2 deletions samples/compile-timeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name := "compile-time-DI"

ThisBuild / dynverVTagPrefix := false

scalaVersion := "2.13.5"
scalaVersion := "2.13.8"

crossScalaVersions := Seq("2.12.13", "2.13.5")
crossScalaVersions := Seq("2.12.13", "2.13.8")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer" % version.value,
Expand Down
4 changes: 2 additions & 2 deletions samples/runtimeDI/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name := "runtime-DI"

ThisBuild / dynverVTagPrefix := false

scalaVersion := "2.13.5"
scalaVersion := "2.13.8"

crossScalaVersions := Seq("2.12.13", "2.13.5")
crossScalaVersions := Seq("2.12.13", "2.13.8")

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-mailer-guice" % version.value,
Expand Down

0 comments on commit 4b803ea

Please sign in to comment.