Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
java: [ '8', '11' ]
scala: [
{ version: '2.11.12' },
{ version: '2.12.15' },
{ version: '2.12.14' },
{ version: '2.12.13' },
{ version: '2.12.12' },
Expand Down
1 change: 1 addition & 0 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ coursier fetch \
org.scoverage:scalac-scoverage-plugin_2.12.12:$version \
org.scoverage:scalac-scoverage-plugin_2.12.13:$version \
org.scoverage:scalac-scoverage-plugin_2.12.14:$version \
org.scoverage:scalac-scoverage-plugin_2.12.15:$version \
org.scoverage:scalac-scoverage-plugin_2.13.0:$version \
org.scoverage:scalac-scoverage-plugin_2.13.1:$version \
org.scoverage:scalac-scoverage-plugin_2.13.2:$version \
Expand Down
13 changes: 11 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@ import sbtcrossproject.CrossProject
import sbtcrossproject.CrossType

val scalatestVersion = "3.2.9"
val scalametaVersion = "4.4.20"
val scalametaVersion = "4.4.28"
val defaultScala213 = "2.13.6"
val bin211 = Seq("2.11.12")
val bin212 =
Seq("2.12.14", "2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8")
Seq(
"2.12.15",
"2.12.14",
"2.12.13",
"2.12.12",
"2.12.11",
"2.12.10",
"2.12.9",
"2.12.8"
)
val bin213 =
Seq(
defaultScala213,
Expand Down