Skip to content

Commit 61e1111

Browse files
authored
re-enable versionPolicy checking on Scala 3 (#497)
1 parent a86d01c commit 61e1111

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Diff for: build.sbt

+1-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@ ThisBuild / startYear := Some(2004)
44
// I thought we could declare these in `ThisBuild` scope but no :-/
55
val commonSettings = Seq(
66
versionScheme := Some("early-semver"),
7-
versionPolicyIntention := {
8-
if (scalaVersion.value.startsWith("3"))
9-
Compatibility.None
10-
else
11-
Compatibility.BinaryCompatible
12-
}
7+
versionPolicyIntention := Compatibility.BinaryCompatible,
138
)
149

1510
lazy val root = project.in(file("."))

0 commit comments

Comments
 (0)