Skip to content

Commit

Permalink
Bump to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gernest committed Feb 13, 2017
1 parent 2e9b578 commit 1bddcca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
VERSION=0.1.1
VERSION=0.1.2
NAME=fastc_$(VERSION)

build:
gox \
-output "bin/{{.Dir}}/{{.OS}}_{{.Arch}}/{{.Dir}}_$(VERSION)/{{.Dir}}" \
-output "bin/{{.Dir}}_$(VERSION)/{{.OS}}_{{.Arch}}/{{.Dir}}" \
-osarch "linux/arm" github.com/FarmRadioHangar/fastc

tar:
cd bin/ && tar -zcvf $(NAME).tar.gz fastc/
cd bin/ && tar -zcvf $(NAME).tar.gz fastc_${VERSION}/
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

func main() {
app := cli.NewApp()
app.Version = "0.1.1"
app.Version = "0.1.2"
app.Name = "fastc"
app.Usage = "configures asterisk using json"
app.Commands = []cli.Command{
Expand Down

0 comments on commit 1bddcca

Please sign in to comment.