Skip to content

Commit

Permalink
Drop Scala 3 RC versions and bump newest to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Jul 22, 2021
1 parent 101a055 commit 0ff2132
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 134 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- "'++2.12.12 test'"
- "'++2.12.14 test' scripted"
- "'++2.13.6 test'"
- "'++3.0.0 test'"
- "'++3.0.1 test'"
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v12
Expand Down
3 changes: 0 additions & 3 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ coursier fetch \
org.scalameta:mdoc_2.11:$version \
org.scalameta:mdoc_2.12:$version \
org.scalameta:mdoc_2.13:$version \
org.scalameta:mdoc_3.0.0-RC1:$version \
org.scalameta:mdoc_3.0.0-RC2:$version \
org.scalameta:mdoc_3.0.0-RC3:$version \
org.scalameta:mdoc_3:$version \
org.scalameta:mdoc-js_2.11:$version \
org.scalameta:mdoc-js_2.12:$version \
Expand Down
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import scala.collection.mutable
def scala212 = "2.12.14"
def scala211 = "2.11.12"
def scala213 = "2.13.6"
def scala3 = List("3.0.0", "3.0.0-RC3", "3.0.0-RC2", "3.0.0-RC1")
def scala3 = "3.0.1"
def scala2Versions = List(scala212, scala211, scala213)
def allScalaVersions = scala2Versions ::: scala3
def allScalaVersions = scala2Versions :+ scala3

def scalajs = "1.5.1"
def scalajsBinaryVersion = "1"
Expand Down Expand Up @@ -68,7 +68,7 @@ def crossSetting[A](
inThisBuild(
List(
scalaVersion := scala213,
crossScalaVersions := scala2Versions ::: scala3,
crossScalaVersions := allScalaVersions,
organization := "org.scalameta",
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
Expand Down Expand Up @@ -130,7 +130,6 @@ lazy val fansiVersion = Def.setting {

lazy val fs2Version = Def.setting {
if (scalaVersion.value.startsWith("2.11")) "2.1.0"
else if (scalaVersion.value == "3.0.0-RC1") "2.5.4"
else "2.5.5"
}

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions runtime/src/main/scala-3.0.0/mdoc/internal/sourcecode/Macros.scala

This file was deleted.

0 comments on commit 0ff2132

Please sign in to comment.