From 0e14f1cadf683b1b78996c290d283b51953c455a 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:46 +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 ef0b977..89122d9 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.2") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") From 94ced5f621040f9752e14ebf3c93cfc59a12efe1 Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Fri, 31 May 2024 11:51:49 -0400 Subject: [PATCH 2/3] Base versioning for Scala Native bump --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 191d98d..b1c9d7f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ ThisBuild / crossScalaVersions := Seq("2.12.19", "3.3.3", "2.13.14") -ThisBuild / tlBaseVersion := "2.4" +ThisBuild / tlBaseVersion := "2.5" ThisBuild / tlVersionIntroduced := Map("3" -> "2.0.2") ThisBuild / startYear := Some(2014) @@ -43,5 +43,5 @@ lazy val `jawn-fs2` = crossProject(JVMPlatform, JSPlatform, NativePlatform) scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) } ) .nativeSettings( - tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "2.2.1").toMap + tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "2.5.0").toMap ) From 5ce12ec355a45278bdec4874cf60d6c49ed8e37b Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Fri, 31 May 2024 12:00:33 -0400 Subject: [PATCH 3/3] Update to jawn-1.6.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b1c9d7f..f3aedf8 100644 --- a/build.sbt +++ b/build.sbt @@ -18,7 +18,7 @@ ThisBuild / developers := List( ) ) -val JawnVersion = "1.5.1" +val JawnVersion = "1.6.0" val Fs2Version = "3.10.2" val MunitVersion = "1.0.0" val MunitCatsEffectVersion = "2.0.0"