Skip to content

Commit e3d93c1

Browse files
committed
scala 3-RC3
1 parent 65e81b0 commit e3d93c1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ubuntu-latest]
30-
scala: [2.13.5, 3.0.0-RC2]
30+
scala: [2.13.5, 3.0.0-RC3]
3131
3232
runs-on: ${{ matrix.os }}
3333
steps:
@@ -111,12 +111,12 @@ jobs:
111111
tar xf targets.tar
112112
rm targets.tar
113113
114-
- name: Download target directories (3.0.0-RC2)
114+
- name: Download target directories (3.0.0-RC3)
115115
uses: actions/download-artifact@v2
116116
with:
117-
name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }}
117+
name: target-${{ matrix.os }}-3.0.0-RC3-${{ matrix.java }}
118118

119-
- name: Inflate target directories (3.0.0-RC2)
119+
- name: Inflate target directories (3.0.0-RC3)
120120
run: |
121121
tar xf targets.tar
122122
rm targets.tar

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inThisBuild(
99
description := "String diff for Scala",
1010
crossScalaVersions := Seq(
1111
ScalaVersions.v213,
12-
ScalaVersions.v3RC2
12+
ScalaVersions.v3RC3
1313
),
1414
Test / publishArtifact := false,
1515
Test / parallelExecution := false,
@@ -39,7 +39,7 @@ lazy val stringdiff =
3939
.settings(
4040
ScalaOptions.fixOptions,
4141
libraryDependencies ++= Seq(
42-
"org.scalatest" %%% "scalatest" % "3.2.7" % Test
42+
"org.scalatest" %%% "scalatest" % "3.2.8" % Test
4343
)
4444
)
4545

project/ScalaVersions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
object ScalaVersions {
22
val v213 = "2.13.5"
3-
val v3RC2 = "3.0.0-RC2"
3+
val v3RC3 = "3.0.0-RC3"
44
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.0-RC2
1+
sbt.version=1.5.1

0 commit comments

Comments
 (0)