From 0dfc74752ac111c39c6a0187073565130fd0005e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 28 Jan 2023 00:22:46 +0000 Subject: [PATCH 1/2] Update sbt-scalajs, ... to 1.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7a17cf2d..53cb49a2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.9") From de6c28ce9c75feaf3d51ced72e4ae2be140fb61c Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 15 Feb 2023 18:18:52 -0800 Subject: [PATCH 2/2] tell MiMa to relax until next minor version --- build.sbt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1839c639..378b9928 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,10 @@ ThisBuild / startYear := Some(2004) // I thought we could declare these in `ThisBuild` scope but no :-/ val commonSettings = Seq( versionScheme := Some("early-semver"), - versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, + // next version will bump minor (because we dropped Scala 2.11 and upgraded + // Scala.js and Scala Native); we could go back to BinaryAndSourceCompatible + // once that's done + versionPolicyIntention := Compatibility.BinaryCompatible, ) lazy val root = project.in(file("."))