Skip to content

Commit

Permalink
scala 3-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed May 7, 2021
1 parent 65e81b0 commit e3d93c1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.5, 3.0.0-RC2]
scala: [2.13.5, 3.0.0-RC3]
java: [openjdk@1.11.0]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -111,12 +111,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.0.0-RC2)
- name: Download target directories (3.0.0-RC3)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }}
name: target-${{ matrix.os }}-3.0.0-RC3-${{ matrix.java }}

- name: Inflate target directories (3.0.0-RC2)
- name: Inflate target directories (3.0.0-RC3)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inThisBuild(
description := "String diff for Scala",
crossScalaVersions := Seq(
ScalaVersions.v213,
ScalaVersions.v3RC2
ScalaVersions.v3RC3
),
Test / publishArtifact := false,
Test / parallelExecution := false,
Expand Down Expand Up @@ -39,7 +39,7 @@ lazy val stringdiff =
.settings(
ScalaOptions.fixOptions,
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % "3.2.7" % Test
"org.scalatest" %%% "scalatest" % "3.2.8" % Test
)
)

Expand Down
2 changes: 1 addition & 1 deletion project/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
object ScalaVersions {
val v213 = "2.13.5"
val v3RC2 = "3.0.0-RC2"
val v3RC3 = "3.0.0-RC3"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.0-RC2
sbt.version=1.5.1

0 comments on commit e3d93c1

Please sign in to comment.