From f6119a6fb9e5c16cf42a2d4e64a07569d1fa510a Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Wed, 7 Jun 2023 14:30:51 +0200 Subject: [PATCH] Update Mill 0.11 to 0.11.0 (#115) --- README.md | 20 ++++++++++++++++++++ build.sc | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c157ef1..913fd65 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,26 @@ def mimaReportSignatureProblems = true ## Changelog +### 0.0.23 + +- Support Mill `0.11.0` + +### 0.0.22 + +- Support Mill `0.11.0-M11` + +### 0.0.21 + +- Support Mill `0.11.0-M10` + +### 0.0.20 + +- Support Mill `0.11.0-M9` + +### 0.0.19 + +- Support Mill `0.11.0-M8` + ### 0.0.18 - Add support for `MIMA_CHECK_DIRECTION` environment variable diff --git a/build.sc b/build.sc index f0e545f..76159f8 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-M11") + case None => Seq("0.9.12", "0.10.0", "0.11.0") case Some(version) => Seq(version) } val itestMillVersions = latestMillDevVersion match { - case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0-M11") + case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0") case Some(version) => Seq(version) } val millBinaryVersions = millVersions.map(millBinaryVersion)