Skip to content

Commit df05291

Browse files
committed
Relax compatibility intention
1 parent c0e03d9 commit df05291

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.sbt

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ ThisBuild / startYear := Some(2004)
33

44
val commonSettings = Seq(
55
versionScheme := Some("early-semver"),
6-
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
6+
// 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,
79
crossScalaVersions := Seq("2.13.14", "2.12.19", "3.3.3"),
810
scalaVersion := crossScalaVersions.value.head,
911
)

0 commit comments

Comments
 (0)