File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ ThisBuild / startYear := Some(2004)
44// I thought we could declare these in `ThisBuild` scope but no :-/
55val commonSettings = Seq (
66 versionScheme := Some (" early-semver" ),
7- versionPolicyIntention := Compatibility .BinaryAndSourceCompatible ,
7+ // 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 ,
811)
912
1013lazy val root = project.in(file(" ." ))
Original file line number Diff line number Diff line change 11addSbtPlugin(" org.scala-lang.modules" % " sbt-scala-module" % " 3.0.1" )
22
33addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.2.0" )
4- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.12 .0" )
4+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.13 .0" )
55
66addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.2.0" )
77addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.9" )
You can’t perform that action at this time.
0 commit comments