Skip to content

Commit 873b2b6

Browse files
authored
Require macOS 13 (#6114)
1 parent 614c002 commit 873b2b6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ apple_universal_binary(
190190
"x86_64",
191191
"arm64",
192192
],
193-
minimum_os_version = "12.0",
193+
minimum_os_version = "13.0",
194194
platform_type = "macos",
195195
visibility = ["//visibility:public"],
196196
)

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
Use the severity levels `off`, `warning` or `error` instead.
99
[kaseken](https://github.com/kaseken)
1010

11+
* SwiftLint now requires macOS 13 or higher to run.
12+
[JP Simard](https://github.com/jpsim)
13+
1114
### Experimental
1215

1316
* None.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ swiftLintPluginDependencies = [.target(name: "swiftlint")]
2424

2525
let package = Package(
2626
name: "SwiftLint",
27-
platforms: [.macOS(.v12)],
27+
platforms: [.macOS(.v13)],
2828
products: [
2929
.executable(name: "swiftlint", targets: ["swiftlint"]),
3030
.library(name: "SwiftLintFramework", targets: ["SwiftLintFramework"]),

0 commit comments

Comments
 (0)