release 0.52.0

This commit is contained in:
JP Simard 2023-05-10 15:15:09 -04:00
parent eb6d50a04c
commit 97259e24d0
No known key found for this signature in database
GPG Key ID: 184C3F2916202C58
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
## Main
## 0.52.0: Crisp Clear Pleats
#### Breaking

View File

@ -1,6 +1,6 @@
module(
name = "swiftlint",
version = "0.51.0",
version = "0.52.0",
compatibility_level = 1,
repo_name = "SwiftLint",
)

View File

@ -114,8 +114,8 @@ let package = Package(
),
.binaryTarget(
name: "SwiftLintBinary",
url: "https://github.com/realm/SwiftLint/releases/download/0.51.0/SwiftLintBinary-macos.artifactbundle.zip",
checksum: "9fbfdf1c2a248469cfbe17a158c5fbf96ac1b606fbcfef4b800993e7accf43ae"
url: "https://github.com/realm/SwiftLint/releases/download/0.52.0/SwiftLintBinary-macos.artifactbundle.zip",
checksum: "7b956238d2937084a66b89cb68cfcde673f85d1202b37edea9c3f193dec8a2d9"
)
]
)

View File

@ -4,5 +4,5 @@ public struct Version {
public let value: String
/// The current SwiftLint version.
public static let current = Version(value: "0.51.0")
public static let current = Version(value: "0.52.0")
}