diff --git a/CHANGELOG b/CHANGELOG index 9772f8b..961d33d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v0.1.1 (19da4d2144) to v0.2: +v0.1.1 (19da4d2144) to v0.2 (edf6a3a8a6): - The parser now fully supports Python 3 in addition to Python 2.7. - Added a C tokenizer extension that is significantly faster than its Python diff --git a/docs/changelog.rst b/docs/changelog.rst index 0e8bbef..0f7347a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog v0.2 ---- -19da4d2144_ to master_ (released June 20, 2013) +19da4d2144_ to edf6a3a8a6_ (released June 20, 2013) - The parser now fully supports Python 3 in addition to Python 2.7. - Added a C tokenizer extension that is significantly faster than its Python @@ -53,6 +53,6 @@ v0.1 ba94938fe8_ (released August 23, 2012) -.. _master: https://github.com/earwig/mwparserfromhell/tree/v0.2 +.. _edf6a3a8a6: https://github.com/earwig/mwparserfromhell/tree/v0.2 .. _19da4d2144: https://github.com/earwig/mwparserfromhell/tree/v0.1.1 .. _ba94938fe8: https://github.com/earwig/mwparserfromhell/tree/v0.1 diff --git a/docs/index.rst b/docs/index.rst index 4355b61..f2e3345 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -MWParserFromHell v0.2 Documentation +MWParserFromHell v0.3 Documentation =================================== :py:mod:`mwparserfromhell` (the *MediaWiki Parser from Hell*) is a Python diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 5db2d4c..738d4c2 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.2" +__version__ = "0.3.dev" __email__ = "ben.kurtovic@verizon.net" from . import compat, nodes, parser, smart_list, string_mixin, utils, wikicode diff --git a/mwparserfromhell/compat.py b/mwparserfromhell/compat.py old mode 100755 new mode 100644