Skip to content

Commit d8c0a02

Browse files
Update nscplugin, sbt-scala-native to 0.5.1 (#614)
* 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 <[email protected]>
1 parent f0158ea commit d8c0a02

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Build Server Protocol
44
.bsp/
5+
.metals/
6+
metals.sbt
57

68
# SBT specific
79
target/

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sbtcrossproject.CrossProject
22
import sbtcrossproject.CrossType
33

4-
lazy val munitVersion = "0.7.29"
5-
lazy val scalametaVersion = "4.9.0"
4+
lazy val munitVersion = "1.0.0-RC1"
5+
lazy val scalametaVersion = "4.9.3"
66
lazy val defaultScala212 = "2.12.19"
77
lazy val defaultScala213 = "2.13.13"
88
lazy val defaultScala3 = "3.3.0"

plugin/src/test/scala/scoverage/PluginASTSupportTest.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package scoverage
33
import scala.concurrent.Future
44

55
import munit.FunSuite
6-
import munit.GenericAfterEach
6+
import munit.AfterEach
77

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

11-
override def afterEach(context: GenericAfterEach[Future[Any]]): Unit = {
11+
override def afterEach(context: AfterEach): Unit = {
1212
val compiler = ScoverageCompiler.default
1313
assert(!compiler.reporter.hasErrors)
1414
}

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
22
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
33

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

77
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 commit comments

Comments
 (0)