8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dfc747 commit de6c28cCopy full SHA for de6c28c
build.sbt
@@ -4,7 +4,10 @@ ThisBuild / startYear := Some(2004)
4
// I thought we could declare these in `ThisBuild` scope but no :-/
5
val commonSettings = Seq(
6
versionScheme := Some("early-semver"),
7
- versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
+ // next version will bump minor (because we dropped Scala 2.11 and upgraded
8
+ // Scala.js and Scala Native); we could go back to BinaryAndSourceCompatible
9
+ // once that's done
10
+ versionPolicyIntention := Compatibility.BinaryCompatible,
11
)
12
13
lazy val root = project.in(file("."))
0 commit comments