8000 feat: add support for 0.11.x series of Mill (#596) · Arthurm1/scip-java@d3e8f93 · GitHub
[go: up one dir, main page]

Skip to content

Commit d3e8f93

Browse files
authored
feat: add support for 0.11.x series of Mill (sourcegraph#596)
This bumps the version of mill-scip which brings in support for the newly released 0.11.x series of Mill. This also updates the tests to ensure they are running against both the minimal 0.10.x and 0.11.x versions of Mill.
1 parent ddbc7f0 commit d3e8f93

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lazy val V =
2525
val testcontainers = "0.39.3"
2626
val requests = "0.6.5"
2727
val minimalMillVersion = "0.10.0"
28-
val millScipVersion = "0.3.2"
28+
val millScipVersion = "0.3.4"
2929
val kotlinGradlePlugin = "1.5.31"
3030
}
3131

tests/buildTools/src/test/scala/tests/MillBuildToolSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class MillBuildToolSuite extends BaseBuildToolSuite {
5050
else
5151
"idn fail, we don't cover this scala version"
5252

53-
val supportedMillVersions = List("0.10.0")
53+
val supportedMillVersions = List("0.10.6", "0.11.0")
5454
val supportedScalaVersion = List("2.12.16", "2.13.8", "3.1.3")
5555

5656
val testGroupings =
@@ -68,7 +68,7 @@ class MillBuildToolSuite extends BaseBuildToolSuite {
6868
|import mill._, scalalib._
6969
|object minimal extends ScalaModule {
7070
| def scalaVersion = "${scalaVersion}"
71-
| object test extends Tests with TestModule.Munit {
71+
| object test extends ScalaModuleTests with TestModule.Munit {
7272
| def ivyDeps = Agg(ivy"org.scalameta::munit:1.0.0-M6")
7373
| }
7474
|}

0 commit comments

Comments
 (0)
0