From 9953fd55850beec02741f7b9249e2865f002b99c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 22 Apr 2014 16:15:31 -0400 Subject: [PATCH] release/0.3.3 --- CHANGELOG | 2 +- docs/changelog.rst | 12 ++++++------ mwparserfromhell/__init__.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b4d810c..9faf6b7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v0.4 (unreleased): +v0.3.3 (released April 22, 2014): - Added support for Python 2.6 and 3.4. - Template.has() is now passed 'ignore_empty=False' by default instead of True. diff --git a/docs/changelog.rst b/docs/changelog.rst index 4a52f33..9efc022 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,11 +1,11 @@ Changelog ========= -v0.4 ----- +v0.3.3 +------ -Unreleased -(`changes `__): +`Released April 22, 2014 `_ +(`changes `__): - Added support for Python 2.6 and 3.4. - :py:meth:`.Template.has` is now passed *ignore_empty=False* by default @@ -22,8 +22,8 @@ Unreleased :py:class:`.Wikicode`. - Given the frequency of issues with the (admittedly insufficient) tag parser, there's a temporary *skip_style_tags* argument to - :py:meth:`~mwparserfromhell.parse` that ignores ``''`` and ``'''`` until - these issues are corrected. + :py:meth:`~.Parser.parse` that ignores ``''`` and ``'''`` until these issues + are corrected. - Fixed a parser bug involving nested wikilinks and external links. - C code cleanup and speed improvements. diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index e7459e3..469e9a6 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, 2014 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.4.dev" +__version__ = "0.3.3" __email__ = "ben.kurtovic@gmail.com" from . import (compat, definitions, nodes, parser, smart_list, string_mixin,