From e2b37bde6bd248a2983508bb027d38c2e0c944f7 Mon Sep 17 00:00:00 2001
From: Erlend Hamnaberg <erlend@hamnaberg.net>
Date: Tue, 10 Sep 2024 13:17:34 +0200
Subject: [PATCH] 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()