Skip to content

Commit

Permalink
Scala 3.0.0-RC1 (#236)
Browse files Browse the repository at this point in the history
Co-authored-by: przemyslaw wierzbicki <[email protected]>
  • Loading branch information
vigoo and pshemass authored Mar 14, 2021
1 parent 04fa87e commit 32c008c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fail-fast: false
matrix:
java: ['[email protected]', '[email protected]']
scala: ['2.11.12', '2.12.13', '2.13.4', "3.0.0-M3"]
scala: ['2.11.12', '2.12.13', '2.13.4', "3.0.0-RC1"]
platform: ['JVM', 'JS']
steps:
- name: Checkout current branch
Expand All @@ -45,13 +45,13 @@ jobs:
- name: Cache scala dependencies
uses: coursier/cache-action@v5
- name: Run tests
if: matrix.scala != '3.0.0-M3'
if: matrix.scala != '3.0.0-RC1'
run: sbt ++${{ matrix.scala }}! test${{ matrix.platform }}
- name: Run dotty tests
if: matrix.scala == '3.0.0-M3' && matrix.platform == 'JVM'
if: matrix.scala == '3.0.0-RC1' && matrix.platform == 'JVM'
run: sbt ++${{ matrix.scala }}! testJVM
- name: Compile additional subprojects
if: matrix.scala != '3.0.0-M3'
if: matrix.scala != '3.0.0-RC1'
run: sbt ++${{ matrix.scala }}! examples/compile docs/compile benchmarks/compile

publish:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ inThisBuild(

ThisBuild / publishTo := sonatypePublishToBundle.value

val ZioVersion = "1.0.4-2"
val ZioVersion = "1.0.5"
val scalaJavaTimeVersion = "2.0.0-RC5"
val slf4jVersion = "1.7.30"

Expand Down
2 changes: 1 addition & 1 deletion project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object BuildHelper {
final private val Scala211 = "2.11.12"
final private val Scala212 = "2.12.13"
final private val Scala213 = "2.13.4"
final private val Scala3 = "3.0.0-M3"
final private val Scala3 = "3.0.0-RC1"

final val scala3Settings = Seq(
crossScalaVersions += Scala3
Expand Down

0 comments on commit 32c008c

Please sign in to comment.