diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 70589cb72484f6324e0e29c9adf81c7ce2485183_LmJ1bXB2ZXJzaW9uLmNmZw==..c77fe15fddb0a0f786694975a88c493087a701e3_LmJ1bXB2ZXJzaW9uLmNmZw== 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = False [bumpversion:file:main.go] @@ -3,5 +3,6 @@ commit = True tag = False [bumpversion:file:main.go] + [bumpversion:file:Makefile] @@ -7,1 +8,2 @@ [bumpversion:file:Makefile] + diff --git a/Makefile b/Makefile index 70589cb72484f6324e0e29c9adf81c7ce2485183_TWFrZWZpbGU=..c77fe15fddb0a0f786694975a88c493087a701e3_TWFrZWZpbGU= 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ LDFLAGS = -w -extldflags "-static" GOBUILD = CGO_ENABLED=0 go build -ldflags '$(LDFLAGS)' GOINSTALL = CGO_ENABLED=0 go install -ldflags '$(LDFLAGS)' -VERSION = 1.0.0 +VERSION = 1.0.1 FULL_VERSION = $(VERSION)-$(shell hg id --id) .PHONY: doc diff --git a/main.go b/main.go index 70589cb72484f6324e0e29c9adf81c7ce2485183_bWFpbi5nbw==..c77fe15fddb0a0f786694975a88c493087a701e3_bWFpbi5nbw== 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ ) // Version of xbus-stdlib -const Version = "1.0.0" +const Version = "1.0.1" func init() { cobra.OnInitialize(initConfig)