mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
added bumpversion
This commit is contained in:
parent
24a4517526
commit
d403757f2d
7
.bumpversion.cfg
Normal file
7
.bumpversion.cfg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[bumpversion]
|
||||||
|
current_version = 0.1.1
|
||||||
|
|
||||||
|
[bumpversion:file:package.json]
|
||||||
|
|
||||||
|
[bumpversion:file:package-lock.json]
|
||||||
|
|
36
bumpversion.sh
Executable file
36
bumpversion.sh
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -x
|
||||||
|
set -e
|
||||||
|
|
||||||
|
usage(){
|
||||||
|
echo "Usage: $0 {major|minor|patch} [--tag]"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if ! [ -x "$(command -v bumpversion)" ]; then
|
||||||
|
echo 'Error: bumpversion is not installed.' >&2
|
||||||
|
exit 1
|
||||||
|
elif ! git diff-index --quiet HEAD -- >/dev/null 2>&1; then
|
||||||
|
echo 'There are local changes in your the git repository. Please commit or stash them before bumping version.' >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$#" -lt 1 ]; then
|
||||||
|
echo "Illegal number of parameters"
|
||||||
|
usage
|
||||||
|
elif [[ $1 != 'major' && $1 != 'minor' && $1 != 'patch' ]]; then
|
||||||
|
echo 'First argument must be {major|minor|patch}'
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $2 == '--tag' ]]; then
|
||||||
|
if git branch --contains $(git rev-parse --verify HEAD) | grep -E 'master'; then
|
||||||
|
bumpversion --tag --commit $1
|
||||||
|
else
|
||||||
|
echo "Only master tags can be tagged"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
bumpversion $1
|
||||||
|
fi
|
Loading…
x
Reference in New Issue
Block a user