Skip to content

Commit f63ca24

Browse files
authored
Update Scala Native to 0.5.3 (#617)
1 parent c74831c commit f63ca24

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,12 @@ docs/_site
2121
*.sublime-project
2222
*.sublime-workspace
2323

24+
# VSCode
25+
/.vscode/
26+
27+
# Metals
28+
/.bsp/
29+
/project/**/metals.sbt
30+
2431
# emacs
2532
TAGS

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
4242
name := "paiges-core",
4343
moduleName := "paiges-core",
4444
libraryDependencies ++= Seq(
45-
"org.scalatestplus" %%% "scalacheck-1-16" % "3.2.14.0" % Test,
45+
"org.scalatestplus" %%% "scalacheck-1-18" % "3.2.18.0" % Test,
4646
"org.scalatest" %%% "scalatest-funsuite" % "3.2.18" % Test
4747
),
4848
// TODO: 2.13 has warnings for using Stream, but scalacheck Shrink
@@ -74,9 +74,9 @@ lazy val cats = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7474
name := "paiges-cats",
7575
moduleName := "paiges-cats",
7676
libraryDependencies ++= Seq(
77-
"org.typelevel" %%% "cats-core" % "2.10.0",
78-
"org.typelevel" %%% "cats-laws" % "2.10.0" % Test,
79-
"org.typelevel" %%% "discipline-scalatest" % "2.2.0" % Test
77+
"org.typelevel" %%% "cats-core" % "2.12.0",
78+
"org.typelevel" %%% "cats-laws" % "2.12.0" % Test,
79+
"org.typelevel" %%% "discipline-scalatest" % "2.3.0" % Test
8080
)
8181
)
8282
.disablePlugins(JmhPlugin)
@@ -131,6 +131,6 @@ lazy val commonJsSettings = Seq(
131131

132132
lazy val commonNativeSettings = Seq(
133133
// Remove when native is published for the default previous versions
134-
tlVersionIntroduced := List("2.12", "2.13").map(_ -> "0.4.1").toMap + ("3" -> "0.4.3"),
134+
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.5.0").toMap,
135135
coverageEnabled := false
136136
)

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
22
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
3-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
3+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.3")
44
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8")
55
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
66
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")

0 commit comments

Comments
 (0)