Browse Source

Fix release script.

tags/v0.5
Ben Kurtovic 7 years ago
parent
commit
d54509e190
3 changed files with 15 additions and 3 deletions
  1. +4
    -0
      CHANGELOG
  2. +8
    -0
      docs/changelog.rst
  3. +3
    -3
      scripts/release.sh

+ 4
- 0
CHANGELOG View File

@@ -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.


+ 8
- 0
docs/changelog.rst View File

@@ -1,6 +1,14 @@
Changelog
=========

v0.5
----

Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.4.4...develop>`__):

- Fixed release script after changes to PyPI.

v0.4.4
------



+ 3
- 3
scripts/release.sh View File

@@ -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


Loading…
Cancel
Save