Change version to 0.1.0
This commit is contained in:
parent
cbf356c1e0
commit
5fb7d6ebc0
|
@ -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
|
|
@ -4,7 +4,6 @@ A description of this package.
|
|||
|
||||
## TODO
|
||||
|
||||
* Makefile
|
||||
* Brew formula
|
||||
* README
|
||||
* Filter for os types
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
|
||||
public extension XcodeSimulatorTool {
|
||||
static var version: String {
|
||||
return "0.1"
|
||||
return "0.1.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
version="0.1"
|
||||
version="0.1.0"
|
||||
|
||||
cat > ./Sources/XcodeSimulatorKit/Version.swift <<EOF
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue