Skip to content

Commit 144d525

Browse files
authored
Add Support for Scala 3.0.0 (#75)
1 parent d30624e commit 144d525

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.mill-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.5-52-ef6d5d
1+
0.9.6-61-bd7927

build.sc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion
1010

1111
val dottyVersions = sys.props.get("dottyVersion").toList
1212

13-
val scalaVersions = "2.12.13" :: "2.13.4" :: "2.11.12" :: "3.0.0-RC3" :: dottyVersions
13+
val scalaVersions = "2.12.13" :: "2.13.4" :: "2.11.12" :: "3.0.0" :: dottyVersions
1414
val scala2Versions = scalaVersions.filter(_.startsWith("2."))
1515

1616
val scalaJSVersions = for {
1717
scalaV <- scala2Versions
18-
scalaJSV <- Seq("0.6.33", "1.4.0")
18+
scalaJSV <- Seq("0.6.33", "1.5.1")
1919
} yield (scalaV, scalaJSV)
2020

2121
val scalaNativeVersions = for {
@@ -106,8 +106,8 @@ trait OsLibModule extends CrossScalaModule with PublishModule{
106106

107107
trait OsLibTestModule extends ScalaModule with TestModule{
108108
def ivyDeps = Agg(
109-
ivy"com.lihaoyi::utest::0.7.9",
110-
ivy"com.lihaoyi::sourcecode::0.2.6"
109+
ivy"com.lihaoyi::utest::0.7.10",
110+
ivy"com.lihaoyi::sourcecode::0.2.7"
111111
)
112112

113113
def platformSegment: String
@@ -124,7 +124,7 @@ trait OsModule extends OsLibModule{
124124
def artifactName = "os-lib"
125125

126126
def ivyDeps = Agg(
127-
ivy"com.lihaoyi::geny::0.6.9"
127+
ivy"com.lihaoyi::geny::0.6.10"
128128
)
129129
}
130130

mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This is a wrapper script, that automatically download mill from GitHub release pages
44
# You can give the required mill version with MILL_VERSION env variable
55
# If no version is given, it falls back to the value of DEFAULT_MILL_VERSION
6-
DEFAULT_MILL_VERSION=0.9.5-52-ef6d5d
6+
DEFAULT_MILL_VERSION=0.9.6-61-bd7927
77

88
set -e
99

0 commit comments

Comments
 (0)