Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to Scala 3.0.0-RC3 #1915

Merged
merged 1 commit into from
Apr 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .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, windows-latest]
scala: [3.0.0-RC1, 3.0.0-RC2, 2.12.13, 2.13.5]
scala: [3.0.0-RC2, 3.0.0-RC3, 2.12.13, 2.13.5]
java:
- adopt@1.8
- adopt@1.11
Expand All @@ -36,10 +36,10 @@ jobs:
java: adopt@1.15
- ci: ciJS
java: graalvm-ce-java8@21.0
- os: windows-latest
scala: 3.0.0-RC1
- os: windows-latest
scala: 3.0.0-RC2
- os: windows-latest
scala: 3.0.0-RC3
- os: windows-latest
scala: 2.12.13
- os: windows-latest
Expand All @@ -50,10 +50,10 @@ jobs:
java: adopt@1.15
- ci: ciFirefox
java: graalvm-ce-java8@21.0
- os: windows-latest
scala: 3.0.0-RC1
- os: windows-latest
scala: 3.0.0-RC2
- os: windows-latest
scala: 3.0.0-RC3
- os: windows-latest
scala: 2.12.13
- os: windows-latest
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ val Windows = "windows-latest"
val ScalaJSJava = "adopt@1.8"
val Scala213 = "2.13.5"

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

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

Expand Down Expand Up @@ -146,11 +146,11 @@ ThisBuild / apiURL := Some(url("https://typelevel.org/cats-effect/api/3.x/"))

ThisBuild / autoAPIMappings := true

val CatsVersion = "2.5.0"
val CatsVersion = "2.6.0"
val Specs2Version = "4.10.6"
val ScalaCheckVersion = "1.15.3"
val DisciplineVersion = "1.1.4"
val CoopVersion = "1.0.0"
val DisciplineVersion = "1.1.5"
val CoopVersion = "1.1.0"

replaceCommandAlias(
"ci",
Expand Down