Skip to content

Commit

Permalink
build: upgrade to latest Scala + sbt versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph committed Nov 10, 2020
1 parent a170dd3 commit 373c602
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -3,8 +3,8 @@ language: scala
scala:
- 2.10.7
- 2.11.12
- 2.12.7
- 2.13.0-M5
- 2.12.12
- 2.13.3

before_install:
# make comparing to origin/master work
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Expand Up @@ -27,8 +27,8 @@ libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test"
)
case Some((2, n)) if n >= 11 => Seq(
"org.specs2" %% "specs2-core" % "4.3.5" % "test",
"org.specs2" %% "specs2-scalacheck" % "4.3.5" % "test",
"org.specs2" %% "specs2-core" % "4.5.1" % "test",
"org.specs2" %% "specs2-scalacheck" % "4.5.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test"
)
case _ => Nil
Expand Down Expand Up @@ -67,7 +67,7 @@ mimaBinaryIssueFilters := Seq(
// publishing
///////////////

crossScalaVersions := Seq("2.12.7", "2.10.7", "2.11.12", "2.13.0-M5")
crossScalaVersions := Seq("2.12.12", "2.10.7", "2.11.12", "2.13.3")

publishMavenStyle := true

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.2.6
sbt.version=1.2.7

0 comments on commit 373c602

Please sign in to comment.