Skip to content

Commit

Permalink
helper release script
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed May 19, 2019
1 parent 3aca3e5 commit 03a7df0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dist
build
eggs
parts
bin
var
sdist
develop-eggs
Expand Down
28 changes: 28 additions & 0 deletions bin/release
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash -ex

VERSION="$1"
VERSION_FILE=flask_socketio/__init__.py

if [[ "$VERSION" == "" ]]; then
echo "Usage: $0 <version>"
fi

sed -i "" "s/^__version__ = '.*'$/__version__ = '$VERSION'/" $VERSION_FILE
rm -rf dist
pip install --upgrade pip wheel twine
python setup.py sdist bdist_wheel --universal

git add $VERSION_FILE
git commit -m "Release $VERSION"
git tag -f v$VERSION
git push --tags origin master

read -p "Press any key to submit to PyPI or Ctrl-C to abort..." -n1 -s
twine upload dist/*

NEW_VERSION="${VERSION%.*}.$((${VERSION##*.}+1))dev"
sed -i "" "s/^__version__ = '.*'$/__version__ = '$NEW_VERSION'/" $VERSION_FILE
git add $VERSION_FILE
git commit -m "Version $NEW_VERSION"
git push origin master
echo "Development is now open on version $NEW_VERSION!"

0 comments on commit 03a7df0

Please sign in to comment.