From 7e98ada3b8f5cde0f291ef0635df675a8b0ee1d0 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Fri, 20 Jan 2023 18:42:07 -0800 Subject: [PATCH] re-enable versionPolicy checking on Scala 3 I think we disabled this back when we didn't have any previous Scala 3 artifacts to check against? --- build.sbt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index 6a3f3b77..b05dcfba 100644 --- a/build.sbt +++ b/build.sbt @@ -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("."))