Gump is an utility to bump your package using semver.
This tool is part of the go-github-release workflow
Check the release page!
mkdir -p $GOPATH/src/github.com/mh-cbon/gump
cd $GOPATH/src/github.com/mh-cbon/gump
git clone https://github.com/mh-cbon/gump.git .
glide install
go installchoco source add -n=mh-cbon -s="https://api.bintray.com/nuget/mh-cbon/choco"
choco install gumpchoco install gumpwget -O - https://raw.githubusercontent.com/mh-cbon/latest/master/bintray.sh \
| GH=mh-cbon/gump sh -xe
# or
curl -L https://raw.githubusercontent.com/mh-cbon/latest/master/bintray.sh \
| GH=mh-cbon/gump sh -xecurl -L https://raw.githubusercontent.com/mh-cbon/latest/master/install.sh \
| GH=mh-cbon/gump sh -xe
# or
wget -q -O - --no-check-certificate \
https://raw.githubusercontent.com/mh-cbon/latest/master/install.sh \
| GH=mh-cbon/gump sh -xegump -help
Gump - Bump your package
Usage:
gump prerelease [-b|--beta] [-a|--alpha] [-d|--dry] [-m <message>]
gump patch [-d|--dry] [-m <message>]
gump minor [-d|--dry] [-m <message>]
gump major [-d|--dry] [-m <message>]
gump -h | --help
gump -v | --version
Options:
-h --help Show this screen.
-v --version Show version.
-d --dry Only display the new version number.
-b --beta Update last beta version.
-a --alpha Update last alpha version.
-m Set tag message.
Examples
# Bump patch with a message
gump patch -m "tag message"
# Bump major with a message
gump major -m "tag message"gump patch -d
gump prerelease -a -d
gump prerelease -b -d
gump minor -d
gump major -dGump can detect, parse and execute pre/post version scripts.
The file is written to be compatible for both linux and windows.
They are numerous hooks executed in this order :
- prebump : Runs in first for any type of update, it does not receive
!newversion!tag. It should be used to synchronize your local with remote. - prepatch : Runs for a
patchupdate. - preminor : Runs for a
minorupdate. - premajor : Runs for a
majorupdate. - preversion : Runs for a any type of update.
- version is set here on your vcs
- postversion : Runs for a any type of update.
- postmajor : Runs for a
majorupdate. - postminor : Runs for a
minorupdate. - postpatch : Runs for a
patchupdate. - postbump : Runs for a any type of update.
If any pre script returns an exit code different than 0,
the execution will stop and the version will remain untouched.
If post script fails, the version has already changed,
gump will return an exit code = 1.
Scripts can use few special tags
!newversion!will be replaced by the value of the new version (not available inprebump)!tagmessage!will be replaced by the value of the tag message!isprerelease!will be replaced byyeswhen--betaor--alphaarguments are present, otherwise it is replaced by the valueno!isprerelease_int!will be replaced by1when--betaor--alphaarguments are present, otherwise it is replaced by the value0!isprerelease_bool!will be replaced bytruewhen--betaor--alphaarguments are present, otherwise it is replaced by the valuefalse
Drop a file named .version.sh on your root such
.version.sh
PREBUMP=
666 git fetch --tags origin master
666 git pull origin master
PREVERSION=
philea -s "666 go vet %s" "666 go-fmt-fail %s"
666 go run gump.go -v
666 go test
666 go test config/*
666 go test stringexec/*
666 changelog finalize --version !newversion!
666 commit -q -m "changelog: !newversion!" -f change.log
POSTVERSION=
666 changelog md -o CHANGELOG.md --guess
666 commit -q -m "changelog: !newversion!" -f CHANGELOG.md
666 go install --ldflags "-X main.VERSION=!newversion!"
666 emd gen -out README.md
666 commit -q -m "README: !newversion!" -f README.md
666 git push
666 git push --tags
666 gh-api-cli create-release -n release -o mh-cbon --guess \
--ver !newversion! -c "changelog ghrelease --version !newversion!" \
--draft !isprerelease!Drop a file named .version on your root such
.version-demo
# demo of .version file
prebump: git fetch --tags
preversion: go vet && go fmt
postversion: git push && git push --tagsAdd a new key scripts to your glide file such
demo-glide.yaml
package: github.com/mh-cbon/gump
scripts:
prebump: echo "pre bump"
postbump: echo "post bump"
import:
- package: gopkg.in/yaml.v2If you have longer scripts to run you can write it like this:
demo-long-glide.yaml
scripts:
preversion: |
echo "hello" \
&& echo "how are you ?"
postversion: |
echo "I m fine"
&& echo "goodbye"Declare a new env VERBOSE=gump or VERBOSE=* to get more information.
VERBOSE=gump gump patch -d
VERBOSE=* gump patch -dgump patch -d # check
gump patch # bump- at some point, probably, move to https://github.com/Masterminds/vcs