From c17a62dfc7424b66d01e599808541631178dae4e Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 26 Jan 2023 14:14:19 -0800 Subject: [PATCH] lock down bidirectional compat, post-2.2.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ffe2352b..31290945 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +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 := Compatibility.BinaryCompatible, + versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, ) lazy val root = project.in(file("."))