Skip to content

Commit 9b243ab

Browse files
authored
Add Support for Scala 3.0.0 (#83)
1 parent 477724e commit 9b243ab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.sc

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion
66

77
val dottyVersion = Option(sys.props("dottyVersion"))
88

9-
object requests extends Cross[RequestsModule]((List("2.12.13", "2.13.5", "2.11.12", "3.0.0-RC3") ++ dottyVersion): _*)
9+
object requests extends Cross[RequestsModule]((List("2.12.13", "2.13.5", "2.11.12", "3.0.0") ++ dottyVersion): _*)
1010
class RequestsModule(val crossScalaVersion: String) extends CrossScalaModule with PublishModule {
1111
def publishVersion = VcsVersion.vcsState().format()
1212
def artifactName = "requests"
@@ -21,12 +21,12 @@ class RequestsModule(val crossScalaVersion: String) extends CrossScalaModule wit
2121
)
2222
)
2323
def ivyDeps = Agg(
24-
ivy"com.lihaoyi::geny::0.6.9"
24+
ivy"com.lihaoyi::geny::0.6.10"
2525
)
2626
object test extends Tests{
2727
def ivyDeps = Agg(
28-
ivy"com.lihaoyi::utest::0.7.9",
29-
ivy"com.lihaoyi::ujson::1.3.12"
28+
ivy"com.lihaoyi::utest::0.7.10",
29+
ivy"com.lihaoyi::ujson::1.3.13"
3030
)
3131
def testFrameworks = Seq("utest.runner.Framework")
3232
}

mill

+1-1
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.7
77

88
set -e
99

0 commit comments

Comments
 (0)