Files
SwiftLint/Source/SwiftLintFramework/Models/Version.swift
T
2022-08-18 13:31:47 -04:00

9 lines
245 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.49.0-rc.2")
}