Skip to content

Commit

Permalink
Upgrade Dotty to 3.0.0-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoliykmetyuk authored and jodersky committed Apr 28, 2021
1 parent 6c58901 commit 69308b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion
val scala211 = "2.11.12"
val scala212 = "2.12.13"
val scala213 = "2.13.4"
val scala3 = "3.0.0-RC2"
val scala3 = "3.0.0-RC3"
val scalaJS06 = "0.6.33"
val scalaJS1 = "1.4.0"
val scalaNative = "0.4.0"
Expand Down Expand Up @@ -92,7 +92,7 @@ trait CommonPublishModule extends CommonModule with PublishModule with CrossScal
}

trait CommonTestModule extends CommonModule with TestModule{
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.8") ++ (
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.9") ++ (
if (isDotty) Agg.empty[mill.scalalib.Dep]
else Agg(ivy"com.lihaoyi::acyclic:0.2.1")
)
Expand Down Expand Up @@ -139,7 +139,7 @@ trait CommonNativeModule extends CommonPublishModule with ScalaNativeModule{

trait CommonCoreModule extends CommonPublishModule {
def artifactName = "upickle-core"
def ivyDeps = Agg(ivy"com.lihaoyi::geny::0.6.8")
def ivyDeps = Agg(ivy"com.lihaoyi::geny::0.6.9")
}
object core extends Module {
object js extends Cross[CoreJsModule](scalaJSVersions:_*)
Expand Down Expand Up @@ -423,7 +423,7 @@ trait BenchModule extends CommonModule{
ivy"com.typesafe.play::play-json::2.9.2",
ivy"io.argonaut::argonaut:6.2.3",
ivy"org.json4s::json4s-ast:3.6.7",
ivy"com.lihaoyi::sourcecode::0.2.4",
ivy"com.lihaoyi::sourcecode::0.2.6",
)
}

Expand Down Expand Up @@ -455,7 +455,7 @@ object bench extends Module {
def platformSegment = "native"
def scalaNativeVersion = "0.4.0"
def moduleDeps = Seq(upickle.native(scala213, "0.4.0").test)
def ivyDeps = Agg(ivy"com.lihaoyi::sourcecode::0.2.4")
def ivyDeps = Agg(ivy"com.lihaoyi::sourcecode::0.2.6")
def allSourceFiles = T(super.allSourceFiles().filter(_.path.last != "NonNative.scala"))
def releaseMode = ReleaseMode.ReleaseFast
def nativeLTO = LTO.Thin
Expand Down

0 comments on commit 69308b5

Please sign in to comment.