Skip to content

Commit

Permalink
Update munit to 1.0.0 (#168)
Browse files Browse the repository at this point in the history
## About this PR
📦 Updates [org.scalameta:munit](https://github.com/scalameta/munit) from
`1.0.0-RC1` to `1.0.0`

📜 [GitHub Release
Notes](https://github.com/scalameta/munit/releases/tag/v1.0.0) -
[Version
Diff](scalameta/munit@v1.0.0-RC1...v1.0.0)

## Usage
✅ **Please merge!**

I'll automatically update this PR to resolve conflicts as long as you
don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you
have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a
[`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/8293d2e3111d350e014cc467a3e0fc013d98a9da/docs/repo-specific-configuration.md)
file.

_Have a fantastic day writing Scala!_

<details>
<summary>⚙ Adjust future updates</summary>

Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "org.scalameta", artifactId = "munit" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.scalameta", artifactId = "munit" }
}]
```
</details>

<sup>
labels: test-library-update, early-semver-pre-release,
semver-spec-pre-release, commit-count:1
</sup>
  • Loading branch information
arainko authored May 23, 2024
2 parents cdd96dc + 5fe9219 commit 180198e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ lazy val ducktape =
scalacOptions ++= List("-deprecation", "-Wunused:all"),
Test / scalacOptions --= List("-deprecation"),
Test / scalacOptions ++= List("-Werror", "-Wconf:cat=deprecation:s"),
libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0-RC1" % Test
libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test
)

lazy val docs =
Expand Down

0 comments on commit 180198e

Please sign in to comment.