From 19da4d2144dd035064b76c5d5ce9a57f904341cb Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 21 Sep 2012 23:07:43 -0400 Subject: [PATCH] release/0.1.1 --- docs/conf.py | 4 ++-- docs/index.rst | 2 +- mwparserfromhell/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6cc3664..c537d37 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2012 Ben Kurtovic' # built documents. # # The short X.Y version. -version = '0.2' +version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.2.dev' +release = '0.1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 24f42f2..e198783 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -MWParserFromHell v0.2 Documentation +MWParserFromHell v0.1 Documentation =================================== :py:mod:`mwparserfromhell` (the *MediaWiki Parser from Hell*) is a Python diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 4f73a0e..bdf5712 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 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.2.dev" +__version__ = "0.1.1" __email__ = "ben.kurtovic@verizon.net" from . import nodes, parser, smart_list, string_mixin, wikicode