Skip to content

Commit d3f3be5

Browse files
SethTisuepeteraldous
authored andcommitted
re-enable versionPolicy checking on Scala 3 (scala#497)
1 parent d835c0f commit d3f3be5

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

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)