diff --git a/.gitignore b/.gitignore index 9a74264..5b97a42 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ byzanz-window /_obj/ +/releases/ diff --git a/Changes b/Changes index 1568819..e0d34b3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for go-impl.el +Revision 0.1.1 2016/07/03 syohex + - Implement verbose flag(Thanks calavera) + Revision 0.1.0 2016/07/03 syohex - Implement version flag diff --git a/Makefile b/Makefile index bd6997e..50d6fe2 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ GOVERSION=$(shell go version) GOOS=$(word 1,$(subst /, ,$(lastword $(GOVERSION)))) GOARCH=$(word 2,$(subst /, ,$(lastword $(GOVERSION)))) -VERSION=0.1.0 +VERSION=0.1.1 RELEASE_DIR=releases ARTIFACTS_DIR=$(RELEASE_DIR)/artifacts/$(VERSION) GITHUB_USERNAME=syohex diff --git a/cmd/byzanz-window/byzanz-window.go b/cmd/byzanz-window/byzanz-window.go index d228110..302eb64 100644 --- a/cmd/byzanz-window/byzanz-window.go +++ b/cmd/byzanz-window/byzanz-window.go @@ -14,7 +14,7 @@ import ( "github.com/syohex/byzanz-window" ) -const VERSION = "0.1.0" +const VERSION = "0.1.1" func selectWindow() (int, error) { fmt.Println("Select the window which you like to capture.")