From 0a6f8bf2b6fe98e47901d21ab24530db890b0eef Mon Sep 17 00:00:00 2001 From: "tarao-scala-steward[bot]" <162550418+tarao-scala-steward[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 01:14:46 +0000 Subject: [PATCH 1/3] Update nscplugin, sbt-scala-native to 0.5.4 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 66e35c1..230fc73 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,5 +3,5 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1") addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1") addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "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.4") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12") From 57b141a3822e95229e1a2de06f0fc48397006a16 Mon Sep 17 00:00:00 2001 From: tarao Date: Tue, 2 Jul 2024 10:27:19 +0900 Subject: [PATCH 2/3] Update dependencies. --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 27de475..8172e30 100644 --- a/build.sbt +++ b/build.sbt @@ -30,8 +30,8 @@ ThisBuild / githubWorkflowJavaVersions := Seq( ) val BenchmarkJavaVersion = JavaSpec.temurin("11") -val circeVersion = "0.14.8" -val scalaTestVersion = "3.2.18" +val circeVersion = "0.14.9" +val scalaTestVersion = "3.2.19" lazy val compileSettings = Def.settings( // Default options are set by sbt-typelevel-settings @@ -104,7 +104,7 @@ lazy val upickle = crossProject(JVMPlatform, JSPlatform, NativePlatform) .settings( description := "uPickle / uJson integration for record4s", libraryDependencies ++= Seq( - "com.lihaoyi" %%% "upickle" % "3.2.0", + "com.lihaoyi" %%% "upickle" % "3.3.1", ), ) From 936b4c7c3fefce7a5fff15ebc9ff77a51126a1b8 Mon Sep 17 00:00:00 2001 From: tarao Date: Tue, 2 Jul 2024 14:36:55 +0900 Subject: [PATCH 3/3] Bump version. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8172e30..130f291 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import ProjectKeys._ import Implicits._ -ThisBuild / tlBaseVersion := "0.12" +ThisBuild / tlBaseVersion := "0.13" ThisBuild / projectName := "record4s" ThisBuild / groupId := "com.github.tarao"