Files
Danny Mösch b515723b16 Release 0.55.1
2024-05-16 21:42:01 +02:00

9 lines
240 B
Swift

/// A type describing the SwiftLint version.
public struct Version {
/// The string value for this version.
public let value: String
/// The current SwiftLint version.
public static let current = Version(value: "0.55.1")
}