1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/bin/bash
# Make sure there is only 1 argument passed
if [ "$#" -ne 1 ]; then
echo "You must provide a new version"
exit 1
fi
# Make sure the new version is not empty
if [ -z "$1" ]; then
echo "You must provide a non-empty version"
exit 1
fi
# get the directory of this script
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
# get the package name
PACKAGE=$($DIR/get_package_name.sh)
# get the current version
VERSION=$($DIR/get_version.sh)
# Announce the version bump
echo "Bumping the version from $VERSION to $1"
# __init__.py
sed -i "s|__version__ = \"$VERSION\"|__version__ = \"$1\"|g" $DIR/../$PACKAGE/__init__.py
# setup.py
sed -i "s|version=\"$VERSION\",|version=\"$1\",|g" $DIR/../setup.py
# conf.py
sed -i "s|version = '$VERSION'|version = '$1'|g" $DIR/../docs/source/conf.py
sed -i "s|release = '$VERSION'|release = '$1'|g" $DIR/../docs/source/conf.py
|