Skip to content

Commit

Permalink
upgrade scala to 2.13.1 (#148)
Browse files Browse the repository at this point in the history
* upgrade scala to 2.13.1

* expect kind-projector 0.10.4 to be published against full Scala version

* bump kind-projector to 0.11.0

* Update sbt-scoverage to 1.6.1

This relies on latest (as of today) scalac-scoverage-plugin (1.4.1), which should be compatible with scalac 2.13.1
  • Loading branch information
sirocchj authored Nov 20, 2019
1 parent 89f7eae commit c5200a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sudo: false
language: scala
scala:
- 2.12.10
- 2.13.0
- 2.13.1

jdk:
- openjdk8
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}

val `scala 2.12` = "2.12.10"
val `scala 2.13` = "2.13.0"
val `scala 2.13` = "2.13.1"

val V = new {
val circe = "0.12.3"
val fs2 = "2.1.0"
val `kind-projector` = "0.10.3"
val `kind-projector` = "0.11.0"
val kittens = "2.0.0"
val `log-effect-fs2` = "0.12.0"
val `parallel-collections` = "0.2.0"
Expand Down Expand Up @@ -46,7 +46,7 @@ val `scala-parallel-collections` = Def.setting {
}

val `kind-projector-compiler-plugin` = Def.setting {
compilerPlugin("org.typelevel" % "kind-projector" % V.`kind-projector` cross CrossVersion.binary)
compilerPlugin("org.typelevel" % "kind-projector" % V.`kind-projector` cross CrossVersion.full)
}

val coreDeps = Def.Initialize.join {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ addSbtPlugin("org.portable-scala" % "sbt-crossproject" % "0.6.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.7")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")

0 comments on commit c5200a6

Please sign in to comment.