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.1 #614

Merged
merged 3 commits into from
May 2, 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Build Server Protocol
.bsp/
.metals/
metals.sbt

# SBT specific
target/
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbtcrossproject.CrossProject
import sbtcrossproject.CrossType

lazy val munitVersion = "0.7.29"
lazy val scalametaVersion = "4.9.0"
lazy val munitVersion = "1.0.0-RC1"
lazy val scalametaVersion = "4.9.3"
lazy val defaultScala212 = "2.12.19"
lazy val defaultScala213 = "2.13.13"
lazy val defaultScala3 = "3.3.0"
Expand Down
4 changes: 2 additions & 2 deletions plugin/src/test/scala/scoverage/PluginASTSupportTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package scoverage
import scala.concurrent.Future

import munit.FunSuite
import munit.GenericAfterEach
import munit.AfterEach

/** @author Stephen Samuel */
class PluginASTSupportTest extends FunSuite with MacroSupport {

override def afterEach(context: GenericAfterEach[Future[Any]]): Unit = {
override def afterEach(context: AfterEach): Unit = {
val compiler = ScoverageCompiler.default
assert(!compiler.reporter.hasErrors)
}
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.1")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
Expand Down
Loading