Skip to content

Commit 493b9fc

Browse files
committed
Add support for Scala 2.13.18
1 parent 5828951 commit 493b9fc

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
scala:
1313
- 2.12.19
1414
- 2.12.20
15-
- 2.13.16
1615
- 2.13.17
16+
- 2.13.18
1717
- 3.3.7
1818
- 3.7.3
1919
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Scapegoat
22
=========
33

44
[![Codecov](https://img.shields.io/codecov/c/github/sksamuel/scapegoat)](https://codecov.io/gh/sksamuel/scapegoat)
5-
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_2.12.19.svg?label=latest%20release%20for%202.12.19"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.12.19%22)
6-
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_2.13.14.svg?label=latest%20release%20for%202.13.14"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.13.14%22)
7-
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_3.3.3.svg?label=latest%20release%20for%203.3.3"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.3.3%22)
8-
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_3.4.2.svg?label=latest%20release%20for%203.4.2"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.4.2%22)
5+
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_2.12.20.svg?label=latest%20release%20for%202.12.20"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.12.20%22)
6+
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_2.13.17.svg?label=latest%20release%20for%202.13.17"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_2.13.17%22)
7+
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_3.3.7.svg?label=latest%20release%20for%203.3.7"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.3.7%22)
8+
[<img src="https://img.shields.io/maven-central/v/com.sksamuel.scapegoat/scalac-scapegoat-plugin_3.7.3.svg?label=latest%20release%20for%203.7.3"/>](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22scalac-scapegoat-plugin_3.7.3%22)
99
[![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)
1010

1111
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).

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ developers := List(
2020
)
2121

2222
scalaVersion := "3.7.4"
23-
crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.16", "2.13.17", "3.3.7", "3.7.4")
23+
crossScalaVersions := Seq("2.12.19", "2.12.20", "2.13.17", "2.13.18", "3.3.7", "3.7.4")
2424
autoScalaLibrary := false
2525
crossVersion := CrossVersion.full
2626
// workaround for https://github.com/sbt/sbt/issues/5097, fixed in sbt 2.x
@@ -113,7 +113,7 @@ libraryDependencies ++= (if (scalaBinaryVersion.value == "3") {
113113
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
114114
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "test",
115115
compilerPlugin(
116-
"org.scalameta" % "semanticdb-scalac" % "4.14.1" cross CrossVersion.full
116+
"org.scalameta" % "semanticdb-scalac" % "4.14.2" cross CrossVersion.full
117117
)
118118
)
119119
})

0 commit comments

Comments
 (0)