Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nscplugin, sbt-scala-native to 0.5.2 #631

Merged
merged 4 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / tlBaseVersion := "1.5"
ThisBuild / tlBaseVersion := "1.6"
lazy val scala212 = "2.12.19"
lazy val scala213 = "2.13.14"
lazy val scala3 = "3.3.3"
Expand All @@ -16,7 +16,7 @@ ThisBuild / tlFatalWarnings := false

lazy val jawnSettings = Seq(
Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1"),
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.17.1" % Test
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.0" % Test
)

lazy val jawnSettingsJVM = List(Test / fork := true)
Expand All @@ -25,9 +25,9 @@ lazy val jawnSettingsJS = List(
)
lazy val jawnSettingsNative = Seq(
tlVersionIntroduced := Map(
"2.12" -> "1.3.0",
"2.13" -> "1.3.0",
"3" -> "1.4.0"
"2.12" -> "1.6.0",
"2.13" -> "1.6.0",
"3" -> "1.6.0"
)
)

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.2")