diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index accf4a98..147e27fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,8 @@ jobs: { version: '2.12.12' }, { version: '2.12.11' }, { version: '2.12.10' }, + { version: '2.12.9' }, + { version: '2.12.8' }, { version: '2.13.5' }, { version: '2.13.4' }, { version: '2.13.3' }, diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 76522cc7..cb1d2a53 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,6 +18,8 @@ jobs: { version: '2.12.12' }, { version: '2.12.11' }, { version: '2.12.10' }, + { version: '2.12.9' }, + { version: '2.12.8' }, { version: '2.13.5' }, { version: '2.13.4' }, { version: '2.13.3' }, diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0dee89a6..97438d20 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,6 +21,8 @@ jobs: { version: '2.12.12' }, { version: '2.12.11' }, { version: '2.12.10' }, + { version: '2.12.9' }, + { version: '2.12.8' }, { version: '2.13.5' }, { version: '2.13.4' }, { version: '2.13.3' }, diff --git a/README.md b/README.md index 9cf40d5a..0e77c59e 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,11 @@ To see scoverage in action check out the [samples](https://github.com/scoverage/ ### Release History +##### 28th April 2021 - 1.4.3 + +* Added Scala 2.12.13+, 2.13.5+ support +* All versions are now cross built with the full scala version (instead of binary only) + ##### 12th June 2019 - 1.4.0 * Added Scala 2.13 support diff --git a/build.sbt b/build.sbt index 65621e5b..c4298c43 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ import sbtcrossproject.CrossType val Org = "org.scoverage" val ScalatestVersion = "3.1.1" -val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10") +val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8") val bin213 = Seq("2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.13.1", "2.13.0") val appSettings = Seq( diff --git a/version.sbt b/version.sbt index 86a12748..0a133bb2 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.4.3-SNAPSHOT" +version in ThisBuild := "1.4.4-SNAPSHOT"