diff --git a/CHANGELOG b/CHANGELOG index 64f91db..79a712b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,8 @@ -v0.5.1 (released March 03, 2018): +v0.6 (unreleased): + +- ... + +v0.5.1 (released March 3, 2018): - Improved behavior when adding parameters to templates (via Template.add()) with poorly formatted whitespace conventions. (#185) diff --git a/README.rst b/README.rst index ab1bef9..833ecea 100644 --- a/README.rst +++ b/README.rst @@ -193,7 +193,7 @@ Python 3 code (via the API_):: return mwparserfromhell.parse(text) .. _MediaWiki: http://mediawiki.org -.. _ReadTheDocs: http://mwparserfromhell.readthedocs.org +.. _ReadTheDocs: http://mwparserfromhell.readthedocs.io .. _Earwig: http://en.wikipedia.org/wiki/User:The_Earwig .. _Σ: http://en.wikipedia.org/wiki/User:%CE%A3 .. _Legoktm: http://en.wikipedia.org/wiki/User:Legoktm diff --git a/appveyor.yml b/appveyor.yml index e99f54e..70b71b4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ # This config file is used by appveyor.com to build Windows release binaries -version: 0.5.1-b{build} +version: 0.6.dev0-b{build} branches: only: diff --git a/docs/changelog.rst b/docs/changelog.rst index 4e637d2..ddfdde4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,10 +1,18 @@ Changelog ========= +v0.6 +---- + +Unreleased +(`changes `__): + +- ... + v0.5.1 ------ -`Released March 03, 2018 `_ +`Released March 3, 2018 `_ (`changes `__): - Improved behavior when adding parameters to templates (via diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index ab8514a..11e1094 100644 --- a/mwparserfromhell/__init__.py +++ b/mwparserfromhell/__init__.py @@ -29,7 +29,7 @@ outrageously powerful parser for `MediaWiki `_ wikicode. __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2012-2018 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.5.1" +__version__ = "0.6.dev0" __email__ = "ben.kurtovic@gmail.com" from . import (compat, definitions, nodes, parser, smart_list, string_mixin, diff --git a/scripts/release.sh b/scripts/release.sh index 0d31e15..5dbefbe 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -9,7 +9,7 @@ fi VERSION=$1 SCRIPT_DIR=$(dirname "$0") -RELEASE_DATE=$(date +"%B %d, %Y") +RELEASE_DATE=$(date +"%B %-d, %Y") check_git() { if [[ -n "$(git status --porcelain --untracked-files=no)" ]]; then @@ -76,9 +76,8 @@ do_git_stuff() { } upload_to_pypi() { - echo -n "PyPI: uploading source tarball and docs..." + echo -n "PyPI: uploading source tarball..." python setup.py -q register sdist upload -s - python setup.py -q upload_docs echo " done." } @@ -88,7 +87,7 @@ post_release() { echo "*** Update: https://github.com/earwig/mwparserfromhell/releases/tag/v$VERSION" echo "*** Verify: https://pypi.python.org/pypi/mwparserfromhell" echo "*** Verify: https://ci.appveyor.com/project/earwig/mwparserfromhell" - echo "*** Verify: https://mwparserfromhell.readthedocs.org" + echo "*** Verify: https://mwparserfromhell.readthedocs.io" echo "*** Press enter to sanity-check the release." read }