diff --git a/Makefile b/Makefile index a1d7b52..67c0296 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,12 @@ # To create a new release of Teleconsole: # - make your changes # - bump VERSION variable in this Makefile +# - run 'make version' # - commit & push to git # - run `make release` to create git tags # To bump the version, edit this variable and run `make version` -export VERSION=0.1.0-beta +export VERSION=0.1.1-beta OUT=out/teleconsole GOSRC=$(shell find -name "*.go" -print) @@ -27,7 +28,6 @@ dev: clean sleep 3 out/teleconsole -s teleconsole.local:5000 -insecure - # Makes a new release (pushes tags to Github) .PHONY:release release: version diff --git a/version/version.go b/version/version.go index 5c7cae9..7b4ba75 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ /* DO NOT EDIT THIS FILE. IT IS GENERATED BY 'make setver'*/ package version - const( Version = "0.1.0-beta" + const( Version = "0.1.1-beta" ) var Gitref, BuildDate string