Skip to content

Commit 669f390

Browse files
committed
relax compatibility policy for next minor release
1 parent e6294a3 commit 669f390

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 3.2 -> 3.3 upgrade requires a minor version bump
8+
versionPolicyIntention := Compatibility.BinaryCompatible,
79
crossScalaVersions := Seq("2.13.10", "2.12.17", "3.3.0"),
810
scalaVersion := crossScalaVersions.value.head,
911
)

0 commit comments

Comments
 (0)