From 21d153a1c8913ada81ba46a3ef86b5b703dad724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Doeraene?= Date: Tue, 20 Feb 2024 15:35:56 +0100 Subject: [PATCH 1/2] Post release v1.2.0. Set `versionPolicyIntention` to `BinaryAndSourceCompatible` for the upcoming v1.2.1. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index df3f3d0..715a023 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ inThisBuild(Def.settings( Developer("bishabosha", "Jamie Thompson", "bishbashboshjt@gmail.com", url("https://github.com/bishabosha")), ), - versionPolicyIntention := Compatibility.BinaryCompatible, + versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, // Ignore dependencies to internal modules whose version is like `1.2.3+4...` (see https://github.com/scalacenter/sbt-version-policy#how-to-integrate-with-sbt-dynver) versionPolicyIgnoredInternalDependencyVersions := Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r), From 084c061344d250a2d3f887d12dee42195f25d016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Doeraene?= Date: Tue, 20 Feb 2024 15:36:44 +0100 Subject: [PATCH 2/2] Upgrade to sbt-tasty-mima v1.2.0. --- build.sbt | 3 --- project/plugins.sbt | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 715a023..8d0dadb 100644 --- a/build.sbt +++ b/build.sbt @@ -31,9 +31,6 @@ inThisBuild(Def.settings( versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, // Ignore dependencies to internal modules whose version is like `1.2.3+4...` (see https://github.com/scalacenter/sbt-version-policy#how-to-integrate-with-sbt-dynver) versionPolicyIgnoredInternalDependencyVersions := Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r), - - // Temporary until we upgrade to an sbt-tasty-mima that supports Scala 3.4.x out of the box - tastyMiMaTastyQueryVersionOverride := Some("1.3.0"), )) val commonSettings = Seq( diff --git a/project/plugins.sbt b/project/plugins.sbt index 2e4c71a..d12aabc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,4 +3,4 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.4") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.1.0") -addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "1.1.0") +addSbtPlugin("ch.epfl.scala" % "sbt-tasty-mima" % "1.2.0")