Skip to content

Commit

Permalink
Prepared release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed May 15, 2020
1 parent 5870cb7 commit 5803a10
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
14 changes: 11 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Integration test plugin for mill plugins
:version: 0.2.1
:version: 0.3.0
:exampleMillVersion: 0.6.1
:toc:
:toc-placement: preamble
Expand Down Expand Up @@ -251,7 +251,8 @@ The following table shows a matrix of compatible mill and mill-integrationtest v
[options="header"]
|===
| mill-integrationtest | mill
| 0.2.1 | 0.6.0 - 0.6.2
| 0.3.0 | 0.6.2 - 0.7
| 0.2.1 | 0.6.0 - 0.6.3
| 0.2.0 | 0.5.7
| 0.1.2 | 0.5.7
| 0.1.1 | 0.5.7
Expand All @@ -262,7 +263,14 @@ The following table shows a matrix of compatible mill and mill-integrationtest v

=== master

=== mill-integrationtest 0.2.1 -2020-02-27
=== mill-integrationtest 0.3.0 - 2020-05-15

* Cross-publishing for Mill API 0.6.2 (Scala 2.12) and mill API 0.7.0 (Scala 2.13)
* Use newer mill 0.6.2 API to publish to custom ivy repositories
* Fixes Windows support
* Only scan existing source dirs for test cases

=== mill-integrationtest 0.2.1 - 2020-02-27

* Bumped Mill API to 0.6.0

Expand Down
8 changes: 5 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import os.Path

val baseDir = build.millSourcePath
val rtMillVersion = build.version
val integrationtestVersion = "0.2.2-SNAPSHOT"
val integrationtestVersion = "0.3.0"

val crossCases = Seq(
"0.6.2" -> "2.12.11",
"0.6.2-20-08228b" -> "2.13.2"
"0.7.0" -> "2.13.2"
)

object integrationtest extends Cross[IntegrationtestCross](crossCases: _*)
Expand Down Expand Up @@ -54,6 +54,8 @@ class IntegrationtestCross(millVersion: String, crossScalaVersion: String) exten
PathRef(millSourcePath / os.up / "LICENSE")
)
}

override def skipIdea: Boolean = millVersion != crossCases.head._1
}

object P extends Module {
Expand Down Expand Up @@ -96,4 +98,4 @@ object P extends Module {
os.perms.set(millw, os.perms(millw) + java.nio.file.attribute.PosixFilePermission.OWNER_EXECUTE)
target
}
}
}

0 comments on commit 5803a10

Please sign in to comment.