From 03b96df23f7842be3c3393db1fd85448234f3eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Z=C3=BChlke?= Date: Sat, 7 Sep 2024 08:59:04 +0200 Subject: [PATCH 1/2] Use "circe-refined" as artifact name The 0.15.0 release got released using the artifact name `refned`. This switched back to old name `circe-refined`. See: https://search.maven.org/artifact/io.circe/refned_3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 47a9fc5..697423b 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ lazy val root = lazy val refined = crossProject(JSPlatform, JVMPlatform, NativePlatform) .in(file("refined")) .settings( - moduleName := "refned", + moduleName := "circe-refined", libraryDependencies ++= Seq( "io.circe" %%% s"circe-core" % circeVersion, "io.circe" %%% s"circe-testing" % circeVersion % Test, From e2b37bde6bd248a2983508bb027d38c2e0c944f7 Mon Sep 17 00:00:00 2001 From: Erlend Hamnaberg Date: Tue, 10 Sep 2024 13:17:34 +0200 Subject: [PATCH 2/2] Use correct key and reset mima --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 697423b..67869f6 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ lazy val root = lazy val refined = crossProject(JSPlatform, JVMPlatform, NativePlatform) .in(file("refined")) .settings( - moduleName := "circe-refined", + name := "circe-refined", libraryDependencies ++= Seq( "io.circe" %%% s"circe-core" % circeVersion, "io.circe" %%% s"circe-testing" % circeVersion % Test, @@ -38,7 +38,8 @@ lazy val refined = crossProject(JSPlatform, JVMPlatform, NativePlatform) "org.scalameta" %%% "munit" % munitVersion % Test, "org.scalameta" %%% "munit-scalacheck" % munitScalacheckV % Test, "org.typelevel" %%% "discipline-munit" % disciplineMunitVersion % Test - ) + ), + tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.15.1").toMap ) .jvmSettings() .jsSettings()