Skip to content

Commit

Permalink
Updated to Scala 3.0.0-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
djspiewak committed Apr 23, 2021
1 parent 671dae0 commit cecebc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.0.0-RC1, 2.12.13, 2.13.5]
scala: [3.0.0-RC3, 2.12.13, 2.13.5]
java: [adopt@1.8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ThisBuild / organization := "com.codecommit"
ThisBuild / publishGithubUser := "djspiewak"
ThisBuild / publishFullName := "Daniel Spiewak"

ThisBuild / crossScalaVersions := Seq("3.0.0-RC1", "2.12.13", "2.13.5")
ThisBuild / crossScalaVersions := Seq("3.0.0-RC3", "2.12.13", "2.13.5")

ThisBuild / githubWorkflowTargetBranches := Seq("series/0.x")

Expand All @@ -34,7 +34,7 @@ ThisBuild / scmInfo := Some(
url("https://github.com/djspiewak/cats-effect-testing"),
"git@github.com:djspiewak/cats-effect-testing.git"))

val CatsEffectVersion = "2.4.0"
val CatsEffectVersion = "2.5.0"

lazy val root = project
.in(file("."))
Expand Down Expand Up @@ -64,7 +64,7 @@ lazy val `scalatest-scalacheck` = project

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion,
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.6.0",
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.8.0",
"org.scalacheck" %% "scalacheck" % "1.15.3"),

mimaPreviousArtifacts := mimaPreviousArtifacts.value - ("com.codecommit" %% name.value % "0.3.0")
Expand All @@ -77,7 +77,7 @@ lazy val scalatest = project

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion,
"org.scalatest" %% "scalatest" % "3.2.6"),
"org.scalatest" %% "scalatest" % "3.2.8"),

mimaPreviousArtifacts := mimaPreviousArtifacts.value -- Seq(
"com.codecommit" %% name.value % "0.1.0",
Expand All @@ -93,7 +93,7 @@ lazy val utest = project
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion,
"org.typelevel" %% "cats-effect-laws" % CatsEffectVersion,
"com.lihaoyi" %% "utest" % "0.7.7"))
"com.lihaoyi" %% "utest" % "0.7.9"))

lazy val minitest = project
.in(file("minitest"))
Expand All @@ -104,6 +104,6 @@ lazy val minitest = project
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion,
"org.typelevel" %% "cats-effect-laws" % CatsEffectVersion,
"io.monix" %% "minitest" % "2.9.3"),
"io.monix" %% "minitest" % "2.9.5"),

mimaPreviousArtifacts := mimaPreviousArtifacts.value - ("com.codecommit" %% name.value % "0.1.0"))

0 comments on commit cecebc9

Please sign in to comment.