@@ -1,3 +1,7 @@ | |||||
v0.7 (unreleased): | |||||
- ... | |||||
v0.6 (released December 21, 2020): | v0.6 (released December 21, 2020): | ||||
Thanks to everyone for their patience with this release! | Thanks to everyone for their patience with this release! | ||||
@@ -7,7 +11,7 @@ Thanks to everyone for their patience with this release! | |||||
- Added binary wheels for Linux and macOS. | - Added binary wheels for Linux and macOS. | ||||
- Updated Wikicode.matches() to recognize underscores as being equivalent | - Updated Wikicode.matches() to recognize underscores as being equivalent | ||||
to spaces. (#216) | to spaces. (#216) | ||||
- Added a 'default' parameter to Template.get, and implement dict-style item | |||||
- Added a 'default' parameter to Template.get(), and implement dict-style item | |||||
access for template parameters. (#252) | access for template parameters. (#252) | ||||
- Fixed a rare parsing bug involving deeply nested style tags. (#224) | - Fixed a rare parsing bug involving deeply nested style tags. (#224) | ||||
- Fixed parsing of section headings inside templates. (#233) | - Fixed parsing of section headings inside templates. (#233) | ||||
@@ -1,6 +1,6 @@ | |||||
# This config file is used by appveyor.com to build Windows release binaries | # This config file is used by appveyor.com to build Windows release binaries | ||||
version: 0.6-b{build} | |||||
version: 0.7.dev0-b{build} | |||||
branches: | branches: | ||||
only: | only: | ||||
@@ -1,6 +1,14 @@ | |||||
Changelog | Changelog | ||||
========= | ========= | ||||
v0.7 | |||||
---- | |||||
Unreleased | |||||
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.6...develop>`__): | |||||
- ... | |||||
v0.6 | v0.6 | ||||
---- | ---- | ||||
@@ -27,7 +27,7 @@ outrageously powerful parser for `MediaWiki <https://www.mediawiki.org>`_ wikico | |||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2012-2020 Ben Kurtovic" | __copyright__ = "Copyright (C) 2012-2020 Ben Kurtovic" | ||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.6" | |||||
__version__ = "0.7.dev0" | |||||
__email__ = "ben.kurtovic@gmail.com" | __email__ = "ben.kurtovic@gmail.com" | ||||
from . import (definitions, nodes, parser, smart_list, string_mixin, | from . import (definitions, nodes, parser, smart_list, string_mixin, | ||||
@@ -101,6 +101,7 @@ test_release() { | |||||
source bin/activate | source bin/activate | ||||
echo " done." | echo " done." | ||||
echo -n "Installing mwparserfromhell with pip..." | echo -n "Installing mwparserfromhell with pip..." | ||||
pip -q install --upgrade pip | |||||
pip -q install mwparserfromhell | pip -q install mwparserfromhell | ||||
echo " done." | echo " done." | ||||
echo -n "Checking version..." | echo -n "Checking version..." | ||||