Skip to content

Commit 1226691

Browse files
authored
Merge pull request #406 from iRevive/sn-0.5
Update Scala Native to 0.5.8
2 parents 55a637b + b637e9d commit 1226691

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

build.sbt

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ ThisBuild / startYear := Some(2021)
66
ThisBuild / crossScalaVersions := List("3.3.6", "2.12.20", "2.13.16")
77
ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2")
88

9+
ThisBuild / libraryDependencySchemes +=
10+
"org.scala-native" %% "test-interface_native0.5" % VersionScheme.Always
11+
912
lazy val root = tlCrossRootProject.aggregate(core, munit)
1013

1114
lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
@@ -15,20 +18,19 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
1518
)
1619
.settings(
1720
libraryDependencies ++= List(
18-
"org.scalacheck" %%% "scalacheck" % "1.17.1",
19-
"org.typelevel" %%% "cats-core" % "2.11.0"
21+
"org.scalacheck" %%% "scalacheck" % "1.18.1",
22+
"org.typelevel" %%% "cats-core" % "2.13.0"
2023
)
2124
)
2225

2326
lazy val munit = crossProject(JSPlatform, JVMPlatform, NativePlatform)
2427
.settings(
25-
name := "scalacheck-effect-munit",
26-
testFrameworks += new TestFramework("munit.Framework")
28+
name := "scalacheck-effect-munit"
2729
)
2830
.dependsOn(core)
2931
.settings(
3032
libraryDependencies ++= List(
31-
"org.scalameta" %%% "munit-scalacheck" % "1.0.0-M11",
32-
"org.typelevel" %%% "cats-effect" % "3.6.3" % Test
33+
"org.scalameta" %%% "munit-scalacheck" % "1.1.0",
34+
"org.typelevel" %%% "cats-effect" % "3.7.0-RC1" % Test
3335
)
3436
)

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
22
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.8.0")
3-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
3+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.8")
44
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

0 commit comments

Comments
 (0)