From f581c41361647fec80bdbbdddc643302eb87e1e7 Mon Sep 17 00:00:00 2001
From: "cgrindel-self-hosted-renovate[bot]"
<139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com>
Date: Sun, 15 Sep 2024 21:46:37 +0000
Subject: [PATCH] chore(deps): update dependency nicklockwood/swiftformat to
from: "0.54.5" (#1227)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[nicklockwood/SwiftFormat](https://redirect.github.com/nicklockwood/SwiftFormat)
| patch | `from: "0.54.4"` -> `from: "0.54.5"` |
---
### Release Notes
nicklockwood/SwiftFormat (nicklockwood/SwiftFormat)
###
[`v0.54.5`](https://redirect.github.com/nicklockwood/SwiftFormat/blob/HEAD/CHANGELOG.md#0545-2024-09-11)
[Compare
Source](https://redirect.github.com/nicklockwood/SwiftFormat/compare/0.54.4...0.54.5)
- Fixed crash in `unusedArguments` rule
- Fixed bug where `preferForLoop` failed if `forEach` contains `guard
... else { return }`
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
â™» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).
Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com>
Co-authored-by: Chuck Grindel
---
examples/pkg_manifest_minimal/Package.swift | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/pkg_manifest_minimal/Package.swift b/examples/pkg_manifest_minimal/Package.swift
index 2939b960c..8455f7c94 100644
--- a/examples/pkg_manifest_minimal/Package.swift
+++ b/examples/pkg_manifest_minimal/Package.swift
@@ -7,7 +7,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.6.1"),
- .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.54.4"),
+ .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.54.5"),
.package(path: "third_party/my_local_package"),
.package(path: "third_party/NotThatAmazingModule"),
]