Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Update version to 1.0.5
Browse files Browse the repository at this point in the history
- No code changes
- Version now reports 1.0.5
- Fix makefile

[#92283252]
  • Loading branch information
Michael Fraenkel committed Apr 13, 2015
1 parent 2944fa3 commit 07d250f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
GODEPS := $(shell godep path)
GOPATH := $(GODEPS):$(GOPATH)

grammar:
go get github.com/pointlander/peg
peg dynaml/dynaml.peg

release: spiff_linux_amd64.zip spiff_darwin_amd64.zip
release: spiff_linux_amd64.zip spiff_darwin_amd64.zip

spiff_linux_amd64.zip:
GOOS=linux GOARCH=amd64 go build -o spiff .
GOPATH=$(GOPATH) GOOS=linux GOARCH=amd64 go build -o spiff .
zip spiff_linux_amd64.zip spiff
rm spiff

spiff_darwin_amd64.zip:
GOOS=darwin GOARCH=amd64 go build -o spiff .
GOPATH=$(GOPATH) GOOS=darwin GOARCH=amd64 go build -o spiff .
zip spiff_darwin_amd64.zip spiff
rm spiff
2 changes: 1 addition & 1 deletion spiff.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
app := cli.NewApp()
app.Name = "spiff"
app.Usage = "BOSH deployment manifest toolkit"
app.Version = "1.0.3"
app.Version = "1.0.5"

app.Commands = []cli.Command{
{
Expand Down

0 comments on commit 07d250f

Please sign in to comment.