Skip to content

Commit

Permalink
Update Mill 0.11 to 0.11.0-M10 (#109)
Browse files Browse the repository at this point in the history
* Update Mill 0.11 to 0.11.0-M10

* Fix BuildInfo import
  • Loading branch information
lolgab authored May 25, 2023
1 parent b12bfb6 commit b1bace0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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-M9")
case None => Seq("0.9.12", "0.10.0", "0.11.0-M10")
case Some(version) => Seq(version)
}
val itestMillVersions = latestMillDevVersion match {
case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0-M9")
case None => Seq("0.9.12", "0.10.0", "0.10.12", "0.11.0-M10")
case Some(version) => Seq(version)
}
val millBinaryVersions = millVersions.map(millBinaryVersion)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.github.lolgab.mill.mima

import com.github.lolgab.mill.mima.worker.MimaBuildInfo
import mill._
import mill.main.BuildInfo
import mill.scalalib._

private[mima] trait VersionSpecific extends CoursierModule {
Expand Down

0 comments on commit b1bace0

Please sign in to comment.