Browse Source

release/0.3.1

tags/v0.3.1^0
Ben Kurtovic 10 years ago
parent
commit
8189e0c143
3 changed files with 15 additions and 1 deletions
  1. +5
    -0
      CHANGELOG
  2. +9
    -0
      docs/changelog.rst
  3. +1
    -1
      mwparserfromhell/__init__.py

+ 5
- 0
CHANGELOG View File

@@ -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 <ref>foo</ref>,


+ 9
- 0
docs/changelog.rst View File

@@ -1,6 +1,15 @@
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
----



+ 1
- 1
mwparserfromhell/__init__.py View File

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


Loading…
Cancel
Save