From d17c96886205210198e65e752d8cbd75e64b19ac Mon Sep 17 00:00:00 2001 From: Roberto Tyley Date: Thu, 29 Feb 2024 09:36:15 +0000 Subject: [PATCH] Disable artifact compatibility checking for next release As https://github.com/guardian/facia-scala-client/pull/307 introduces a new artifact, unfortunately artifact compatibility checking will crash out (reporting that it can't find the previous version of the brand new artifact to check compatibility against). So, we have to disable the check for now, and then revert this change after the new artifact is released. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1e1ef8c0..66e53dc9 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ description := "Scala client for The Guardian's Facia JSON API" val sonatypeReleaseSettings = Seq( licenses := Seq("Apache V2" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")), - releaseVersion := fromAggregatedAssessedCompatibilityWithLatestRelease().value, + // releaseVersion := fromAggregatedAssessedCompatibilityWithLatestRelease().value, releaseCrossBuild := true, // true if you cross-build the project for multiple Scala versions releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies,