Skip to content

Commit ed8d71c

Browse files
committed
update dependencies to publish for Scala 3
I would have liked to have maintained support for 3-RC2 and 3-RC3, but the projects this project depends on didn't do that, so it would have been a very confusing dependency matrix. 😞
1 parent 08707e5 commit ed8d71c

File tree

2 files changed

+8
-19
lines changed

2 files changed

+8
-19
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.13.6, 2.12.14, 3.0.0-RC1, 3.0.0-RC2]
26+
scala: [2.13.6, 2.12.14, 3.0.0]
2727
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -117,22 +117,12 @@ jobs:
117117
tar xf targets.tar
118118
rm targets.tar
119119
120-
- name: Download target directories (3.0.0-RC1)
120+
- name: Download target directories (3.0.0)
121121
uses: actions/download-artifact@v2
122122
with:
123-
name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }}
123+
name: target-${{ matrix.os }}-3.0.0-${{ matrix.java }}
124124

125-
- name: Inflate target directories (3.0.0-RC1)
126-
run: |
127-
tar xf targets.tar
128-
rm targets.tar
129-
130-
- name: Download target directories (3.0.0-RC2)
131-
uses: actions/download-artifact@v2
132-
with:
133-
name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }}
134-
135-
- name: Inflate target directories (3.0.0-RC2)
125+
- name: Inflate target directories (3.0.0)
136126
run: |
137127
tar xf targets.tar
138128
rm targets.tar

build.sbt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ import scala.collection.immutable
66
lazy val V = new {
77
val SCALA_2_12 = "2.12.14"
88
val SCALA_2_13 = "2.13.6"
9-
val SCALA_3_RC1 = "3.0.0-RC1"
10-
val SCALA_3_RC2 = "3.0.0-RC2"
11-
val Scalas = Seq(SCALA_2_13, SCALA_2_12, SCALA_3_RC1, SCALA_3_RC2)
12-
val literally = "1.0.0"
9+
val SCALA_3 = "3.0.0"
10+
val Scalas = Seq(SCALA_2_13, SCALA_2_12, SCALA_3)
11+
val literally = "1.0.2"
1312
}
1413

1514
inThisBuild(List(
@@ -56,7 +55,7 @@ lazy val `java-time-literals` = crossProject(JSPlatform, JVMPlatform)
5655
scalaReflect ++
5756
Seq(
5857
"org.typelevel" %% "literally" % V.literally,
59-
"org.scalameta" %% "munit" % "0.7.23" % Test,
58+
"org.scalameta" %% "munit" % "0.7.26" % Test,
6059
)
6160
},
6261
Compile / unmanagedSourceDirectories ++= { // needed until https://github.com/portable-scala/sbt-crossproject/issues/70 is fixed

0 commit comments

Comments
 (0)