diff --git a/CHANGELOG b/CHANGELOG index e36a281..696e806 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ -v0.5 (unreleased): +v0.4.3 (unreleased): +- Added Windows binaries for Python 3.5. - Fixed edge cases involving wikilinks inside of external links and vice versa. - Fixed a C tokenizer crash when a keyboard interrupt happens while parsing. diff --git a/docs/changelog.rst b/docs/changelog.rst index bd9394a..89bf1e6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,12 +1,13 @@ Changelog ========= -v0.5 ----- +v0.4.3 +------ Unreleased (`changes `__): +- Added Windows binaries for Python 3.5. - Fixed edge cases involving wikilinks inside of external links and vice versa. - Fixed a C tokenizer crash when a keyboard interrupt happens while parsing. diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 2611813..2b2bc3f 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, 2013, 2014, 2015 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.5.dev0" +__version__ = "0.4.3.dev0" __email__ = "ben.kurtovic@gmail.com" from . import (compat, definitions, nodes, parser, smart_list, string_mixin,