Kaydet (Commit) af674155 authored tarafından Joffrey F's avatar Joffrey F Kaydeden (comit) Joffrey F

Bump 3.1.3

Signed-off-by: 's avatarJoffrey F <joffrey@docker.com>
üst 88b0d697
version = "3.1.2" version = "3.1.3"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")]) version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
Change log Change log
========== ==========
3.1.3
-----
### Bugfixes
* Regenerated invalid wheel package
3.1.2 3.1.2
----- -----
......
...@@ -18,6 +18,9 @@ if [ -z $VERSION ]; then ...@@ -18,6 +18,9 @@ if [ -z $VERSION ]; then
exit 1 exit 1
fi fi
echo "##> Removing stale build files"
rm -rf ./build || exit 1
echo "##> Tagging the release as $VERSION" echo "##> Tagging the release as $VERSION"
git tag $VERSION || exit 1 git tag $VERSION || exit 1
if [[ $2 == 'upload' ]]; then if [[ $2 == 'upload' ]]; then
...@@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1 ...@@ -30,4 +33,7 @@ pandoc -f markdown -t rst README.md -o README.rst || exit 1
if [[ $2 == 'upload' ]]; then if [[ $2 == 'upload' ]]; then
echo "##> Uploading sdist to pypi" echo "##> Uploading sdist to pypi"
python setup.py sdist bdist_wheel upload python setup.py sdist bdist_wheel upload
else
echo "##> sdist & wheel"
python setup.py sdist bdist_wheel
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment