Skip to content

Commit

Permalink
re-enable versionPolicy checking on Scala 3 (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue authored Jan 23, 2023
1 parent a86d01c commit 61e1111
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@ ThisBuild / startYear := Some(2004)
// I thought we could declare these in `ThisBuild` scope but no :-/
val commonSettings = Seq(
versionScheme := Some("early-semver"),
versionPolicyIntention := {
if (scalaVersion.value.startsWith("3"))
Compatibility.None
else
Compatibility.BinaryCompatible
}
versionPolicyIntention := Compatibility.BinaryCompatible,
)

lazy val root = project.in(file("."))
Expand Down

0 comments on commit 61e1111

Please sign in to comment.