diff --git a/CHANGELOG b/CHANGELOG index 67214fa..4663700 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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): - Added complete support for HTML Tags, including forms like foo, diff --git a/docs/changelog.rst b/docs/changelog.rst index b6db9d9..3546f0c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,15 @@ Changelog ========= +v0.3.1 +------ + +`Released August 29, 2013 `_ +(`changes `__): + +- Fixed a parser bug involving URLs nested inside other markup. +- Fixed some typos. + v0.3 ---- diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 3c011d0..a5fda7c 100644 --- a/mwparserfromhell/__init__.py +++ b/mwparserfromhell/__init__.py @@ -31,7 +31,7 @@ from __future__ import unicode_literals __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2012, 2013 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.4.dev" +__version__ = "0.3.1" __email__ = "ben.kurtovic@verizon.net" from . import (compat, definitions, nodes, parser, smart_list, string_mixin,