diff --git a/Makefile b/Makefile index 141d388..b723bf8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.5.0 +VERSION=0.6.0 BUILD_DATE=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ") GIT_HASH=$(shell git rev-parse HEAD) @@ -16,6 +16,9 @@ LDFLAGS=-ldflags "-X main.Version=$(VERSION) -X main.BuildDate=$(BUILD_DATE) -X simple: go build -v +test: + go test -v + release: $(BINARIES) bin/vopher-$(VERSION).linux.mips64: bin diff --git a/version.go b/version.go index 2bdd896..3a9cc9a 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package main import "fmt" var ( - Version = "0.5" + Version = "0.6.0" GitHash = "" BuildDate = "" )