Skip to content

Commit

Permalink
Prepared release 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Mar 8, 2022
1 parent 8464cc5 commit 2bb817f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
23 changes: 14 additions & 9 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
= mill-integrationtest - Integration test plugin for mill plugins
:version: 0.4.1
:mill-platform: 0.9
:version: 0.4.2
:mill-platform: 0.10
:scala-platform: 2.13
:min-mill-version: 0.6.2
:example-mill-version: 0.9.8
:example-mill-version: 0.10.1
:project-home: https://github.com/lefou/mill-integrationtest
:scoverage-version: 1.4.1
:scoverage-version: 1.4.11
:munit-version: 0.7.7
:toc:
:toc-placement: preamble
Expand Down Expand Up @@ -36,7 +36,7 @@ First you need to add a new test module, e.g. `itest`.
[source,scala,subs="verbatim,attributes"]
----
// build.sc
import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest_mill{mill-platform}:{version}`
import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest::{version}`
import de.tobiasroeser.mill.integrationtest._
object demo extends ScalaModule with PublishModule {
Expand Down Expand Up @@ -415,7 +415,7 @@ Please make sure to use the correct platform suffix matching your used mill vers
[options="header"]
|===
| mill version | mill platform | suffix | example
| 0.10.0-M4 | 0.10.0-M4 | `_mill0.10.0-M4` | ```import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest::{version}````
| 0.10.0 | 0.10 | `_mill0.10` | ```import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest::{version}````
| 0.9.0 | 0.9 | `_mill0.9` | ```import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest_mill0.9:{version}````
| 0.7.0 - 0.8.0 | 0.7 | `_mill0.7` | ```import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest_mill0.7:{version}````
| 0.6.2 | 0.6.2 | `_mill0.6.2` | ```import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest_mill0.6.2_2.12:{version}````
Expand All @@ -439,8 +439,8 @@ Newer version of mill may or may not work. (Feel free to update this page via a
[options="header"]
|===
| mill-integrationtest | mill
| main | 0.9.3 - 0.9.9, 0.10.0-M4
| 0.4.1 | 0.6.2 - 0.9.9
| 0.4.2 | 0.9.3 - 0.9.12, 0.10.0 -
| 0.4.1 | 0.6.2 - 0.9.12
| 0.4.0 | 0.6.2 - 0.9.6, (not 0.9.7), 0.9.8 - 0.9.9
| 0.3.3 | 0.6.2 - 0.8.0
| 0.3.2 | 0.6.2 - 0.8.0
Expand Down Expand Up @@ -478,7 +478,12 @@ I also accept {project-home}/pulls[pull requests on GitHub].

=== main branch

* Added support for Mill 0.10.0-M4
=== mill-integrationtest 0.4.2 - 2022-03-08

* Added support for Mill 0.10
* Added support for mill milestone versions
* Added `prefetcIvyDeps` and offline support
* Dependency updates

=== mill-integrationtest 0.4.1 - 2021-06-09

Expand Down
1 change: 1 addition & 0 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ val millApiCrossVersions = Seq(
override def millPlatform = "0.10"
override def minMillVersion: String = "0.10.0" // scala-steward:off
override def scalaVersion = "2.13.8"
override def testWithMill: Seq[String] = Seq("0.10.1", minMillVersion)
},
new CrossConfig {
override def millPlatform = "0.9"
Expand Down

0 comments on commit 2bb817f

Please sign in to comment.