@@ -1,3 +1,8 @@ | |||||
v0.3.1 (released August 29, 2013): | |||||
- Fixed a parser bug involving URLs nested inside other markup. | |||||
- Fixed some typos. | |||||
v0.3 (released August 24, 2013): | v0.3 (released August 24, 2013): | ||||
- Added complete support for HTML Tags, including forms like <ref>foo</ref>, | - Added complete support for HTML Tags, including forms like <ref>foo</ref>, | ||||
@@ -1,6 +1,15 @@ | |||||
Changelog | Changelog | ||||
========= | ========= | ||||
v0.3.1 | |||||
------ | |||||
`Released August 29, 2013 <https://github.com/earwig/mwparserfromhell/tree/v0.3.1>`_ | |||||
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.3...v0.3.1>`__): | |||||
- Fixed a parser bug involving URLs nested inside other markup. | |||||
- Fixed some typos. | |||||
v0.3 | v0.3 | ||||
---- | ---- | ||||
@@ -31,7 +31,7 @@ from __future__ import unicode_literals | |||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2012, 2013 Ben Kurtovic" | __copyright__ = "Copyright (C) 2012, 2013 Ben Kurtovic" | ||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.4.dev" | |||||
__version__ = "0.3.1" | |||||
__email__ = "ben.kurtovic@verizon.net" | __email__ = "ben.kurtovic@verizon.net" | ||||
from . import (compat, definitions, nodes, parser, smart_list, string_mixin, | from . import (compat, definitions, nodes, parser, smart_list, string_mixin, | ||||