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 munit to 1.1.0 #3455

Merged
merged 1 commit into from
Jan 23, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ abstract class BuildTests(server: Boolean) extends TestUtil.ScalaCliBuildSuite {

test("cli dependency options shadowing using directives") {
val usingDependency = "org.scalameta::munit::1.0.0-M1"
val cliDependency = "org.scalameta::munit::1.0.4"
val cliDependency = "org.scalameta::munit::1.1.0"

val inputs = TestInputs(
os.rel / "foo.scala" ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ trait FixBuiltInRulesTestDefinitions { _: FixTestDefinitions =>
if (!Properties.isWin)
test("all test directives get extracted into project.scala") {
val osLibDep = "com.lihaoyi::os-lib:0.11.3"
val munitDep = "org.scalameta::munit:1.0.4"
val munitDep = "org.scalameta::munit:1.1.0"
val pprintDep = "com.lihaoyi::pprint:0.9.0"
val osLibDepDirective = s"//> using dependency $osLibDep"
val osLibTestDepDirective = s"//> using test.dependency $osLibDep"
Expand Down
2 changes: 1 addition & 1 deletion project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ object Deps {
def metaconfigTypesafe =
ivy"org.scalameta::metaconfig-typesafe-config:0.14.0"
.exclude(("org.scala-lang", "scala-compiler"))
def munit = ivy"org.scalameta::munit:1.0.4"
def munit = ivy"org.scalameta::munit:1.1.0"
def nativeTestRunner = ivy"org.scala-native::test-runner:${Versions.scalaNative}"
def nativeTools = ivy"org.scala-native::tools:${Versions.scalaNative}"
def osLib = ivy"com.lihaoyi::os-lib:0.11.3"
Expand Down