@@ -10,43 +10,43 @@ MUnit, being a testing framework, is only available in test files: files in a `t
1010
1111Alternatively, you can require just a specific version of MUnit:
1212``` scala
13- //> using dep org.scalameta::munit:1.0.3
13+ //> using dep org.scalameta::munit:1.1.0
1414```
1515{% endtab %}
1616{% tab 'sbt' %}
1717In your build.sbt file, you can add the dependency on toolkit-test:
1818``` scala
1919lazy val example = project.in(file(" ." ))
2020 .settings(
21- scalaVersion := " 3.3.4 " ,
22- libraryDependencies += " org.scala-lang" %% " toolkit-test" % " 0.1.7 " % Test
21+ scalaVersion := " 3.4.2 " ,
22+ libraryDependencies += " org.scala-lang" %% " toolkit-test" % " 0.7.0 " % Test
2323 )
2424```
2525
2626Here the ` Test ` configuration means that the dependency is only used by the source files in ` src/test ` .
2727
2828Alternatively, you can require just a specific version of MUnit:
2929``` scala
30- libraryDependencies += " org.scalameta" %% " munit" % " 1.0.3 " % Test
30+ libraryDependencies += " org.scalameta" %% " munit" % " 1.1.0 " % Test
3131```
3232{% endtab %}
3333{% tab 'Mill' %}
3434In your build.sc file, you can add a ` test ` object extending ` Tests ` and ` TestModule.Munit ` :
3535``` scala
3636object example extends ScalaModule {
37- def scalaVersion = " 3.3.4 "
37+ def scalaVersion = " 3.4.2 "
3838 object test extends Tests with TestModule .Munit {
3939 def ivyDeps =
4040 Agg (
41- ivy " org.scala-lang::toolkit-test:0.1.7 "
41+ ivy " org.scala-lang::toolkit-test:0.7.0 "
4242 )
4343 }
4444}
4545```
4646
4747Alternatively, you can require just a specific version of MUnit:
4848``` scala
49- ivy " org.scalameta::munit:1.0.3 "
49+ ivy " org.scalameta::munit:1.1.0 "
5050```
5151{% endtab %}
5252{% endtabs %}
0 commit comments