From 493b9fc424704645a22751a50e02763c67c5e7a3 Mon Sep 17 00:00:00 2001 From: Eugene Platonov Date: Mon, 17 Nov 2025 18:53:51 -0500 Subject: [PATCH] Add support for Scala 2.13.18 --- .github/workflows/pr-checks.yml | 2 +- README.md | 8 ++++---- build.sbt | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index f4c2e56b..0415020d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -12,8 +12,8 @@ jobs: scala: - 2.12.19 - 2.12.20 - - 2.13.16 - 2.13.17 + - 2.13.18 - 3.3.7 - 3.7.3 steps: diff --git a/README.md b/README.md index ce599042..8694d313 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ Scapegoat ========= [![Codecov](https://img.shields.io/codecov/c/github/sksamuel/scapegoat)](https://codecov.io/gh/sksamuel/scapegoat) -[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.12.19%22) -[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.13.14%22) -[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.3.3%22) -[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.4.2%22) +[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.12.20%22) +[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.13.17%22) +[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.3.7%22) +[](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.7.3%22) [![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org) Scapegoat is a Scala static code analyzer, which is more colloquially known as a code lint tool or linter. Scapegoat works in a similar vein to Java's [FindBugs](http://findbugs.sourceforge.net/) or [checkstyle](http://checkstyle.sourceforge.net/), or Scala's [Scalastyle](https://github.com/scalastyle/scalastyle). diff --git a/build.sbt b/build.sbt index d402ce51..1929951e 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ developers := List( ) scalaVersion := "3.7.4" -crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.16", "2.13.17", "3.3.7", "3.7.4") +crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.17", "2.13.18", "3.3.7", "3.7.4") autoScalaLibrary := false crossVersion := CrossVersion.full // workaround for https://github.com/sbt/sbt/issues/5097, fixed in sbt 2.x @@ -113,7 +113,7 @@ libraryDependencies ++= (if (scalaBinaryVersion.value == "3") { "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided", "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test", compilerPlugin( - "org.scalameta" % "semanticdb-scalac" % "4.14.1" cross CrossVersion.full + "org.scalameta" % "semanticdb-scalac" % "4.14.2" cross CrossVersion.full ) ) })