From d98a3cd3fec6c876d316a769b03da40e544353d9 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Mon, 4 Sep 2023 22:08:08 +0200 Subject: [PATCH] Update Scala to 2.13.11 (#29) Pull request: https://github.com/lefou/mill-jbake/pull/29 --- .mill-version | 2 +- build.sc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.mill-version b/.mill-version index 4dc087e..70016a7 100644 --- a/.mill-version +++ b/.mill-version @@ -1 +1 @@ -0.10.4-5-d623fd +0.10.12 diff --git a/build.sc b/build.sc index 4b9bc6d..141bb07 100644 --- a/build.sc +++ b/build.sc @@ -14,7 +14,7 @@ import mill.define.{Target, Task} trait Setup { val millPlatform: String val millVersion: String - def scalaVersion = "2.13.7" + def scalaVersion = "2.13.11" def testMillVersions: Seq[String] } @@ -23,7 +23,7 @@ object Setup { override val millPlatform = "0.10" override val millVersion = "0.10.0" // we skip 0.10.4 tests, as these don't run under windows properly - override val testMillVersions = Seq("0.10.3", "0.10.2", "0.10.1", millVersion) + override val testMillVersions = Seq("0.10.12", millVersion) } object R09 extends Setup { override val millPlatform = "0.9"