├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Common ├── Core.swift ├── Increment.swift └── Regex.swift ├── CommonTests ├── CoreTests.swift └── IncrementTests.swift ├── LICENSE ├── README.md ├── SemverKit-OSX ├── CommandLineOptions.swift ├── Info.plist └── SemverKit-OSX.h ├── SemverKit-OSXTests ├── CommandLineOptionsTests.swift └── Info.plist ├── SemverKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── SemverKit.xccheckout └── xcshareddata │ └── xcschemes │ ├── SemverKit.xcscheme │ └── SemverKitOSX.xcscheme ├── SemverKit ├── Info.plist └── SemverKit.h └── SemverKitTests └── Info.plist /.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | *.xcuserdatad 3 | .DS_Store 4 | Carthage/** 5 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "antitypical/Result" ~> 0.4 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Common/Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/Common/Core.swift -------------------------------------------------------------------------------- /Common/Increment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/Common/Increment.swift -------------------------------------------------------------------------------- /Common/Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/Common/Regex.swift -------------------------------------------------------------------------------- /CommonTests/CoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/CommonTests/CoreTests.swift -------------------------------------------------------------------------------- /CommonTests/IncrementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/CommonTests/IncrementTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/README.md -------------------------------------------------------------------------------- /SemverKit-OSX/CommandLineOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit-OSX/CommandLineOptions.swift -------------------------------------------------------------------------------- /SemverKit-OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit-OSX/Info.plist -------------------------------------------------------------------------------- /SemverKit-OSX/SemverKit-OSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit-OSX/SemverKit-OSX.h -------------------------------------------------------------------------------- /SemverKit-OSXTests/CommandLineOptionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit-OSXTests/CommandLineOptionsTests.swift -------------------------------------------------------------------------------- /SemverKit-OSXTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit-OSXTests/Info.plist -------------------------------------------------------------------------------- /SemverKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SemverKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SemverKit.xcodeproj/project.xcworkspace/xcshareddata/SemverKit.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit.xcodeproj/project.xcworkspace/xcshareddata/SemverKit.xccheckout -------------------------------------------------------------------------------- /SemverKit.xcodeproj/xcshareddata/xcschemes/SemverKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit.xcodeproj/xcshareddata/xcschemes/SemverKit.xcscheme -------------------------------------------------------------------------------- /SemverKit.xcodeproj/xcshareddata/xcschemes/SemverKitOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit.xcodeproj/xcshareddata/xcschemes/SemverKitOSX.xcscheme -------------------------------------------------------------------------------- /SemverKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit/Info.plist -------------------------------------------------------------------------------- /SemverKit/SemverKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKit/SemverKit.h -------------------------------------------------------------------------------- /SemverKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomothetis/SemverKit/HEAD/SemverKitTests/Info.plist --------------------------------------------------------------------------------