Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test matrix and let scala-steward update the 0.11.0 milestone #93

Merged
merged 1 commit into from
Jan 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ trait Deps {
}

object Deps_0_11 extends Deps {
override def millPlatform = "0.11.0-M1"
override def millVersion = "0.11.0-M1" // scala-steward:off
override def millPlatform = millVersion // only valid for exact milestones!
override def millVersion = "0.11.0-M1"
override def scalaVersion = "2.13.10"
override def testWithMill = Seq(millVersion)
override def mimaPreviousVersions = super.mimaPreviousVersions.reverse.takeWhile(_ != "0.3.0").reverse
Expand All @@ -43,7 +43,7 @@ object Deps_0_10 extends Deps {
override def millVersion = "0.10.0" // scala-steward:off
override def scalaVersion = "2.13.10"
// 0.10.4 and 0.10.3 don't run in CI on Windows
override def testWithMill = Seq("0.10.5", millVersion)
override def testWithMill = Seq("0.10.10", "0.10.5", millVersion)
}
object Deps_0_9 extends Deps {
override def millPlatform = "0.9"
Expand Down