Files
SwiftLint/Source/SwiftLintCore/Models/Version.swift
2023-11-10 15:54:29 -05: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.54.0")
}