Browse Source

release/0.3

tags/v0.3^0
Ben Kurtovic 10 years ago
parent
commit
0e19b20156
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      CHANGELOG
  2. +2
    -2
      docs/changelog.rst
  3. +1
    -1
      mwparserfromhell/__init__.py
  4. +2
    -2
      setup.py

+ 1
- 1
CHANGELOG View File

@@ -1,4 +1,4 @@
v0.3 (unreleased):
v0.3 (released August 24, 2013):

- Added complete support for HTML Tags, including forms like <ref>foo</ref>,
<ref name="bar"/>, and wiki-markup tags like bold ('''), italics (''), and


+ 2
- 2
docs/changelog.rst View File

@@ -4,8 +4,8 @@ Changelog
v0.3
----

Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.2...develop>`__):
`Released August 24, 2013 <https://github.com/earwig/mwparserfromhell/tree/v0.3>`_
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.2...v0.3>`__):

- Added complete support for HTML :py:class:`Tags <.Tag>`, including forms like
``<ref>foo</ref>``, ``<ref name="bar"/>``, and wiki-markup tags like bold


+ 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.3.dev"
__version__ = "0.3"
__email__ = "ben.kurtovic@verizon.net"

from . import (compat, definitions, nodes, parser, smart_list, string_mixin,


+ 2
- 2
setup.py View File

@@ -47,13 +47,13 @@ setup(
keywords = "earwig mwparserfromhell wikipedia wiki mediawiki wikicode template parsing",
license = "MIT License",
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Topic :: Text Processing :: Markup"
],
)

Loading…
Cancel
Save