diff --git a/CHANGELOG b/CHANGELOG index 053b37e..05b64ef 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v0.5 (unreleased): + +- Fixed release script after changes to PyPI. + v0.4.4 (released December 30, 2016): - Added support for Python 3.6. diff --git a/docs/changelog.rst b/docs/changelog.rst index 43400a9..ec12e6d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +v0.5 +---- + +Unreleased +(`changes `__): + +- Fixed release script after changes to PyPI. + v0.4.4 ------ diff --git a/scripts/release.sh b/scripts/release.sh index 1171718..4f1e9b0 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -117,11 +117,11 @@ test_release() { fi pip -q uninstall -y mwparserfromhell echo -n "Downloading mwparserfromhell source tarball and GPG signature..." - curl -sL "https://pypi.python.org/packages/source/m/mwparserfromhell/mwparserfromhell-$VERSION.tar.gz" -o "mwparserfromhell.tar.gz" - curl -sL "https://pypi.python.org/packages/source/m/mwparserfromhell/mwparserfromhell-$VERSION.tar.gz.asc" -o "mwparserfromhell.tar.gz.asc" + curl -sL "https://pypi.io/packages/source/m/mwparserfromhell/mwparserfromhell-$VERSION.tar.gz" -o "mwparserfromhell.tar.gz" + curl -sL "https://pypi.io/packages/source/m/mwparserfromhell/mwparserfromhell-$VERSION.tar.gz.asc" -o "mwparserfromhell.tar.gz.asc" echo " done." echo "Verifying tarball..." - gpg --verify mwparserfromhell.tar.gz.asc + gpg --verify mwparserfromhell.tar.gz.asc mwparserfromhell.tar.gz if [[ "$?" != "0" ]]; then echo "*** ERROR: GPG signature verification failed!" deactivate