From 8fe382b9326d5cd6e0243163c851b2285829a89c Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Sun, 4 Aug 2024 12:18:36 +0200 Subject: [PATCH] Update Scala Native to 0.5.4 --- .github/workflows/ci.yml | 2 +- build.sbt | 4 ++-- project/plugins.sbt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e59ee86..cf7eaae7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -277,7 +277,7 @@ jobs: - name: Submit Dependencies uses: scalacenter/sbt-dependency-submission@v2 with: - modules-ignore: rootjs_3 rootjs_2.12 rootjs_2.13 docs_3 docs_2.12 docs_2.13 cats-mtl-tests_sjs1_3 cats-mtl-tests_sjs1_2.12 cats-mtl-tests_sjs1_2.13 rootjvm_3 rootjvm_2.12 rootjvm_2.13 rootnative_3 rootnative_2.12 rootnative_2.13 cats-mtl-tests_3 cats-mtl-tests_2.12 cats-mtl-tests_2.13 cats-mtl-tests_native0.4_3 cats-mtl-tests_native0.4_2.12 cats-mtl-tests_native0.4_2.13 + modules-ignore: rootjs_3 rootjs_2.12 rootjs_2.13 docs_3 docs_2.12 docs_2.13 cats-mtl-tests_sjs1_3 cats-mtl-tests_sjs1_2.12 cats-mtl-tests_sjs1_2.13 rootjvm_3 rootjvm_2.12 rootjvm_2.13 rootnative_3 rootnative_2.12 rootnative_2.13 cats-mtl-tests_3 cats-mtl-tests_2.12 cats-mtl-tests_2.13 cats-mtl-tests_native0.5_3 cats-mtl-tests_native0.5_2.12 cats-mtl-tests_native0.5_2.13 configs-ignore: test scala-tool scala-doc-tool test-internal site: diff --git a/build.sbt b/build.sbt index 4052498e..4f213ee1 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ lazy val commonNativeSettings = Seq( tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "1.3.0").toMap ) -val CatsVersion = "2.11.0" +val CatsVersion = "2.12.0" lazy val root = tlCrossRootProject.aggregate(core, laws, tests, unidocs) @@ -58,7 +58,7 @@ lazy val tests = crossProject(JSPlatform, JVMPlatform, NativePlatform) libraryDependencies ++= Seq( "org.typelevel" %%% "cats-testkit" % CatsVersion, "org.scalameta" %%% "munit" % "1.0.0", - "org.typelevel" %%% "discipline-munit" % "2.0.0-M3")) + "org.typelevel" %%% "discipline-munit" % "2.0.0")) .jsSettings(commonJsSettings) .jvmSettings(commonJvmSettings) .nativeSettings(commonNativeSettings) diff --git a/project/plugins.sbt b/project/plugins.sbt index 12f3a80f..f7ca3fa7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,5 +2,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.10.0") addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.2") addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")