Skip to content

Commit eca9466

Browse files
committed
Update to Scala 3.0.0-RC3
1 parent a05200d commit eca9466

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/scala.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
scala: [2.12.13, 2.13.5, 3.0.0-RC1, 3.0.0-RC2]
12+
scala: [2.12.13, 2.13.5, 3.0.0-RC2, 3.0.0-RC3]
1313

1414
steps:
1515
- uses: actions/checkout@v2

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ TAGS
1919
.ensime_cache
2020
.idea
2121
_site
22+
.bsp

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ lazy val previousJawnVersion = "1.0.1"
44

55
lazy val scala212 = "2.12.13"
66
lazy val scala213 = "2.13.5"
7-
lazy val dottyPrev = "3.0.0-RC1"
8-
lazy val dottyNext = "3.0.0-RC2"
7+
lazy val dottyPrev = "3.0.0-RC2"
8+
lazy val dottyNext = "3.0.0-RC3"
99
ThisBuild / scalaVersion := scala212
1010
ThisBuild / organization := "org.typelevel"
1111
ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
@@ -38,7 +38,7 @@ lazy val jawnSettings = Seq(
3838
},
3939
resolvers += Resolver.sonatypeRepo("releases"),
4040
Test / fork := true,
41-
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1"),
41+
Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1"),
4242
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.15.3" % Test,
4343
libraryDependencies ++= (
4444
if (isDotty.value) Nil
@@ -56,7 +56,7 @@ lazy val jawnSettings = Seq(
5656
releaseCrossBuild := true,
5757
releaseVcsSign := true,
5858
publishMavenStyle := true,
59-
publishArtifact in Test := false,
59+
Test / publishArtifact := false,
6060
Compile / doc / sources := {
6161
val old = (Compile / doc / sources).value
6262
if (isDotty.value)

0 commit comments

Comments
 (0)