From 994119bbbb961d628d99f0b2380d24418b19fb4c Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 16:07:40 +0000 Subject: [PATCH 1/3] Update nscplugin, sbt-scala-native to 0.5.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index fbeb31d..fcea6fd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.2") From ce50729ad38222c9a7e5e2cf96a71fc174f7d925 Mon Sep 17 00:00:00 2001 From: Erlend Hamnaberg Date: Tue, 28 May 2024 21:29:37 +0200 Subject: [PATCH 2/3] Upgrade to scalacheck 1.18.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2909d99..e53569c 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ ThisBuild / tlFatalWarnings := false lazy val jawnSettings = Seq( Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1"), - libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.17.1" % Test + libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.0" % Test ) lazy val jawnSettingsJVM = List(Test / fork := true) From 9966d369a6c87ea7128adcd009bcd2ce565a34ef Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Wed, 29 May 2024 16:37:43 -0400 Subject: [PATCH 3/3] Reset native MiMa --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index e53569c..5b032fe 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -ThisBuild / tlBaseVersion := "1.5" +ThisBuild / tlBaseVersion := "1.6" lazy val scala212 = "2.12.19" lazy val scala213 = "2.13.14" lazy val scala3 = "3.3.3" @@ -25,9 +25,9 @@ lazy val jawnSettingsJS = List( ) lazy val jawnSettingsNative = Seq( tlVersionIntroduced := Map( - "2.12" -> "1.3.0", - "2.13" -> "1.3.0", - "3" -> "1.4.0" + "2.12" -> "1.6.0", + "2.13" -> "1.6.0", + "3" -> "1.6.0" ) )