Skip to content

Commit 16c993e

Browse files
scala-stewardlrytz
authored andcommitted
Update scala-library to 2.13.17
1 parent f2a6f85 commit 16c993e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

build.sbt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
import com.typesafe.tools.mima.core._
2+
13
ThisBuild / licenses += (("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
24
ThisBuild / startYear := Some(2004)
35

46
val commonSettings = Seq(
57
versionScheme := Some("early-semver"),
68
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
7-
crossScalaVersions := Seq("2.13.16", "2.12.20", "3.3.7"),
9+
crossScalaVersions := Seq("2.13.17", "2.12.20", "3.3.7"),
810
scalaVersion := crossScalaVersions.value.head,
911
)
1012

@@ -73,7 +75,14 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
7375
case _ => file(dir.getPath ++ "-2.13-")
7476
}
7577
}
76-
}
78+
},
79+
80+
mimaBinaryIssueFilters ++= {
81+
Seq(
82+
// scala/scala-parser-combinators#605
83+
ProblemFilters.exclude[IncompatibleSignatureProblem]("scala.util.parsing.input.PagedSeq.sliding"),
84+
)
85+
},
7786
)
7887
.jvmSettings(
7988
ScalaModulePlugin.scalaModuleOsgiSettings,

0 commit comments

Comments
 (0)