We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1923961 commit a29dc97Copy full SHA for a29dc97
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