Skip to content

Commit

Permalink
Update nscplugin, sbt-scala-native to 0.5.1 (#614)
Browse files Browse the repository at this point in the history
* Update nscplugin, sbt-scala-native to 0.5.1

* deps: bump scalameta to 4.9.3

* deps: bump munit to v1.0.0-RC1 to support native

---------

Co-authored-by: Chris Kipp <ckipp@pm.me>
  • Loading branch information
scala-steward and ckipp01 authored May 2, 2024
1 parent f0158ea commit d8c0a02
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
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

0 comments on commit d8c0a02

Please sign in to comment.