Browse Source

release/0.3.3

tags/v0.3.3^0
Ben Kurtovic 10 years ago
parent
commit
9953fd5585
3 changed files with 8 additions and 7 deletions
  1. +1
    -1
      CHANGELOG
  2. +6
    -5
      docs/changelog.rst
  3. +1
    -1
      mwparserfromhell/__init__.py

+ 1
- 1
CHANGELOG View File

@@ -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.


+ 6
- 5
docs/changelog.rst View File

@@ -1,11 +1,11 @@
Changelog
=========

v0.4
v0.3.3
------

Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.3.2...develop>`__):
`Released April 22, 2014 <https://github.com/earwig/mwparserfromhell/tree/v0.3.3>`_
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.3.2...v0.3.3>`__):

- 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.



+ 1
- 1
mwparserfromhell/__init__.py View File

@@ -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,


Loading…
Cancel
Save