Skip to content

Commit

Permalink
Update Mill 0.11 to 0.11.0 (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgab authored Jun 7, 2023
1 parent de0d2e3 commit f6119a6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f6119a6

Please sign in to comment.