Skip to content

Commit

Permalink
feat: Support Scala 2.12.20, 2.13.15, 3.3.3, 3.5.1 out of the box (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnnei authored Sep 26, 2024
1 parent 5607d31 commit c8bf709
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
java: [8]
sbt:
- 1.10.1
- 1.10.2
- 0.13.18
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ object ScapegoatSbtPlugin extends AutoPlugin {
val selectedScapegoatVersion = (scapegoatVersion ?).value.getOrElse {
scalaVersion.value match {
// To give a better out of the box experience, default to a recent version of Scapegoat for known Scala versions
case "2.13.14" | "2.13.13" | "2.12.19" | "2.12.18" => "2.1.6"
case "3.3.3" | "3.5.1" | "2.13.14" | "2.13.15" | "2.12.19" | "2.12.20" => "3.0.2"
case "3.4.2" => "3.0.0"
case "2.13.13" | "2.12.18" => "2.1.6"
case "2.13.12" => "2.1.5"
case "2.13.11" | "2.12.17" => "2.1.4"
case "2.13.10" => "2.1.2"
Expand Down

0 comments on commit c8bf709

Please sign in to comment.