From 3e86e46931d87e7ae86aae55087e3b3f9ba71447 Mon Sep 17 00:00:00 2001
From: Scala Steward <43047562+scala-steward@users.noreply.github.com>
Date: Wed, 14 Aug 2024 06:28:05 +0200
Subject: [PATCH] build(deps): update munit from 1.0.0 to 1.0.1 (#371)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## About this PR
📦 Updates [org.scalameta:munit](https://github.com/scalameta/munit) from
`1.0.0` to `1.0.1`
📜 [GitHub Release
Notes](https://github.com/scalameta/munit/releases/tag/v1.0.1) -
[Version
Diff](https://github.com/scalameta/munit/compare/v1.0.0...v1.0.1)
## 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/14ead00cadd6532fcd029565144d39446d05bf34/docs/repo-specific-configuration.md)
file.
_Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number
The following files still refer to the old version number (1.0.0).
You might want to review and update them manually.
```
README.md
docs/README.md
node/package-lock.json
node/package.json
```
⚙ Adjust future updates
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" }
}]
```
labels: test-library-update, early-semver-patch, semver-spec-patch,
old-version-remains, commit-count:1
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index 437bce0..a78700a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -50,7 +50,7 @@ lazy val WeaponRegeX = projectMatrix
.settings(
name := "weapon-regex",
libraryDependencies += "com.lihaoyi" %%% "fastparse" % "3.1.1",
- libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test,
+ libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test,
tpolecatScalacOptions ++= Set(
ScalacOptions.source3,
ScalacOptions.release("8"),