From 1784516771f5d557348f2255a1d0d610636ed921 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sun, 16 Mar 2014 22:05:13 +0600 Subject: [PATCH] Bump version and add Makefile --- Makefile | 16 ++++++++++++++++ settings.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..94a98838f --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +all: build-macosx build-x86 build-x64 + +build-x64: + GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build + tar -czf gor_x64.tar.gz gor + rm gor + +build-x86: + GOOS=linux GOARCH=386 CGO_ENABLED=0 go build + tar -czf gor_x86.tar.gz gor + rm gor + +build-macosx: + GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build + tar -czf gor_macosx.tar.gz gor + rm gor \ No newline at end of file diff --git a/settings.go b/settings.go index a01c2954c..27d0b414f 100644 --- a/settings.go +++ b/settings.go @@ -8,7 +8,7 @@ import ( ) const ( - VERSION = "0.7.5" + VERSION = "0.8" ) type AppSettings struct {