From 1b93a4ea0a72360e7c658461130604cb8bae95f9 Mon Sep 17 00:00:00 2001
From: Scala Steward <43047562+scala-steward@users.noreply.github.com>
Date: Thu, 23 May 2024 23:51:42 +0200
Subject: [PATCH] build(deps): update munit from 0.7.29 to 1.0.0 (#338)
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
`0.7.29` to `1.0.0` âš
📜 [GitHub Release
Notes](https://github.com/scalameta/munit/releases/tag/v1.0.0) -
[Version
Diff](https://github.com/scalameta/munit/compare/v0.7.29...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!_
âš™ 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-major, semver-spec-major,
commit-count:1
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index 404e581..e52d8a6 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.0",
- libraryDependencies += "org.scalameta" %%% "munit" % "0.7.29" % Test,
+ libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test,
tpolecatScalacOptions ++= Set(
ScalacOptions.source3,
ScalacOptions.release("8"),