Skip to content

Commit

Permalink
relax compatibility policy for next minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed May 27, 2023
1 parent e6294a3 commit 669f390
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ ThisBuild / startYear := Some(2004)

val commonSettings = Seq(
versionScheme := Some("early-semver"),
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
// change back to BinaryAndSourceCompatible after next minor release;
// the Scala 3.2 -> 3.3 upgrade requires a minor version bump
versionPolicyIntention := Compatibility.BinaryCompatible,
crossScalaVersions := Seq("2.13.10", "2.12.17", "3.3.0"),
scalaVersion := crossScalaVersions.value.head,
)
Expand Down

0 comments on commit 669f390

Please sign in to comment.