# HG changeset patch
# User Christophe de Vienne <christophe@cdevienne.info>
# Date 1589451285 -7200
#      Thu May 14 12:14:45 2020 +0200
# Node ID c77fe15fddb0a0f786694975a88c493087a701e3
# Parent  70589cb72484f6324e0e29c9adf81c7ce2485183
Bump version: 1.0.0 → 1.0.1

diff --git a/.bumpversion.cfg b/.bumpversion.cfg
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,7 +1,9 @@
 [bumpversion]
-current_version = 1.0.0
+current_version = 1.0.1
 commit = True
 tag = False
 
 [bumpversion:file:main.go]
+
 [bumpversion:file:Makefile]
+
diff --git a/Makefile b/Makefile
--- 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
--- 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)