Change version to 0.1.0

This commit is contained in:
Simon Kågedal Reimer 2019-05-30 19:02:15 +02:00
parent cbf356c1e0
commit 5fb7d6ebc0
4 changed files with 19 additions and 3 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
prefix ?= /usr/local
bindir = $(prefix)/bin
libdir = $(prefix)/lib
build:
swift build -c release --disable-sandbox
install: build
install ".build/release/xcode-simulator-tool" "$(bindir)"
uninstall:
rm -rf "$(bindir)/xcode-simulator-tool"
clean:
rm -rf .build
.PHONY: build install uninstall clean

View File

@ -4,7 +4,6 @@ A description of this package.
## TODO
* Makefile
* Brew formula
* README
* Filter for os types

View File

@ -5,6 +5,6 @@
public extension XcodeSimulatorTool {
static var version: String {
return "0.1"
return "0.1.0"
}
}

View File

@ -1,6 +1,6 @@
#!/bin/bash
version="0.1"
version="0.1.0"
cat > ./Sources/XcodeSimulatorKit/Version.swift <<EOF
//