summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 36102074..49643118 100644
--- a/build.sbt
+++ b/build.sbt
@@ -22,7 +22,7 @@ lazy val commonSettings = Seq (
version := "3.5-SNAPSHOT",
autoAPIMappings := true,
scalaVersion := "2.12.17",
- crossScalaVersions := Seq("2.13.9", "2.12.17"),
+ crossScalaVersions := Seq("2.13.10", "2.12.17"),
scalacOptions := Seq("-deprecation", "-feature"),
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
// Macros paradise is integrated into 2.13 but requires a scalacOption
@@ -123,7 +123,8 @@ lazy val pluginScalaVersions = Seq(
"2.13.6",
"2.13.7",
"2.13.8",
- "2.13.9"
+ "2.13.9",
+ "2.13.10",
)
lazy val plugin = (project in file("plugin")).
@@ -143,8 +144,8 @@ lazy val plugin = (project in file("plugin")).
).
settings(
mimaPreviousArtifacts := {
- // There is not yet a 2.12.17 nor 2.13.9 artifact, so suppress until 3.5.5 is released
- val skipVersions = Seq("2.12.17", "2.13.9")
+ // There are not yet artifacts for 2.12.17, 2.13.9, nor 2.13.10; suppress until 3.5.5 is released
+ val skipVersions = Seq("2.12.17", "2.13.9", "2.13.10")
if (skipVersions.contains(scalaVersion.value)) {
Set()
} else {