Bump version

This commit is contained in:
Simon Kågedal Reimer 2019-06-15 14:13:15 +02:00
parent 62edec831f
commit ebb55c1045
2 changed files with 5 additions and 7 deletions

View File

@ -1,10 +1,9 @@
//
// NOTE: This file is automatically generated by generate-version-swift.sh.
// Should not be under version control.
// This file is generated by generate-version-swift.sh.
//
public extension XcodeSimulatorCert {
static var version: String {
return "0.1.0"
return "0.2.0"
}
}

View File

@ -1,14 +1,13 @@
#!/bin/bash
version="0.1.0"
version="0.2.0"
cat > ./Sources/XcodeSimulatorKit/Version.swift <<EOF
//
// NOTE: This file is automatically generated by generate-version-swift.sh.
// Should not be under version control.
// This file is generated by generate-version-swift.sh.
//
public extension XcodeSimulatorTool {
public extension XcodeSimulatorCert {
static var version: String {
return "${version}"
}