We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e03d9 commit df05291Copy full SHA for df05291
build.sbt
@@ -3,7 +3,9 @@ ThisBuild / startYear := Some(2004)
3
4
val commonSettings = Seq(
5
versionScheme := Some("early-semver"),
6
- versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
+ // change back to BinaryAndSourceCompatible after next minor release;
7
+ // the Scala 2.13.13 -> 2.13.14 upgrade requires a minor version bump
8
+ versionPolicyIntention := Compatibility.BinaryCompatible,
9
crossScalaVersions := Seq("2.13.14", "2.12.19", "3.3.3"),
10
scalaVersion := crossScalaVersions.value.head,
11
)
0 commit comments