From b12bfb6d0b962d82e8aa4daf06e56337cb3fd760 Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Fri, 19 May 2023 09:57:32 +0100 Subject: [PATCH] Update Mill `0.11` to` 0.11.0-M9` (#108) --- build.sc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sc b/build.sc index e9f3204..3d819a1 100644 --- a/build.sc +++ b/build.sc @@ -25,11 +25,11 @@ val latestMillDevVersion: Option[String] = { } val millVersions = latestMillDevVersion match { - case None => Seq("0.9.12", "0.10.0", "0.11.0-M8") + case None => Seq("0.9.12", "0.10.0", "0.11.0-M9") case Some(version) => Seq(version) } val itestMillVersions = latestMillDevVersion match { - case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0-M8") + case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0-M9") case Some(version) => Seq(version) } val millBinaryVersions = millVersions.map(millBinaryVersion)