Skip to content

Commit 1d85da4

Browse files
authored
Merge pull request #112 from typelevel/update/nscplugin-0.4.16
Update nscplugin, sbt-scala-native, ... to 0.4.16
2 parents 07b824d + 220d5b0 commit 1d85da4

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTlVersion)
33
addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % sbtTlVersion)
44
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTlVersion)
55
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
6-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")
6+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")
77
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

tests/shared/src/test/scala/org/typelevel/toolkit/ScalaCliProcess.scala

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,9 @@ object ScalaCliProcess {
7575
def command(args: List[String]): IO[Unit] = scalaCli(args)
7676

7777
def run(body: String): IO[Unit] =
78-
writeToFile(body)(false).use(f =>
79-
scalaCli("run" :: "--native-version" :: "0.4.15" :: f :: Nil)
80-
)
78+
writeToFile(body)(false).use(f => scalaCli("run" :: f :: Nil))
8179

8280
def test(body: String): IO[Unit] =
83-
writeToFile(body)(true).use(f =>
84-
scalaCli("test" :: "--native-version" :: "0.4.15" :: f :: Nil)
85-
)
81+
writeToFile(body)(true).use(f => scalaCli("test" :: f :: Nil))
8682

8783
}

0 commit comments

Comments
 (0)