Skip to content

Commit

Permalink
Merge branch 'release/0.16.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Apr 22, 2024
2 parents b2ee006 + 1546d8e commit cdd1124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update_version.sh
Expand Up @@ -3,15 +3,15 @@
# ./update_version.sh 0.16.0
#

git flow release start v$1
git flow release start $1
sed -i -e "s/__version__ = '.*'/__version__ = '$1'/g" nvd3/__init__.py
sed -i -e "s/version='.*'/version='$1'/g" setup.py
#rm -rf docs/html
#python setup.py develop
#make docs
#git commit docs nvd3/__init__.py -m "Update to version v$1"
git commit -a -m "Update to version v$1"
git flow release finish v$1
git flow release finish $1
python setup.py sdist
twine upload dist/python-nvd3-$1.tar.gz
git push origin develop; git push origin master; git push --tags

0 comments on commit cdd1124

Please sign in to comment.