From c7617c3eb3cf1865168a6566dc4dd1eb951a6c1b Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 24 Aug 2013 20:19:11 -0400 Subject: [PATCH] Bump version to 0.4.dev; also update README and setup.py. --- README.rst | 6 ++++-- mwparserfromhell/__init__.py | 2 +- setup.py | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b5fd912..5b4cfe1 100644 --- a/README.rst +++ b/README.rst @@ -9,8 +9,8 @@ mwparserfromhell that provides an easy-to-use and outrageously powerful parser for MediaWiki_ wikicode. It supports Python 2 and Python 3. -Developed by Earwig_ with help from `Σ`_. Full documentation is available on -ReadTheDocs_. +Developed by Earwig_ with contributions from `Σ`_, Legoktm_, and others. +Full documentation is available on ReadTheDocs_. Development occurs on GitHub_. Installation ------------ @@ -148,6 +148,8 @@ following code (via the API_):: .. _ReadTheDocs: http://mwparserfromhell.readthedocs.org .. _Earwig: http://en.wikipedia.org/wiki/User:The_Earwig .. _Σ: http://en.wikipedia.org/wiki/User:%CE%A3 +.. _Legoktm: http://en.wikipedia.org/wiki/User:Legoktm +.. _GitHub: https://github.com/earwig/mwparserfromhell .. _Python Package Index: http://pypi.python.org .. _StackOverflow question: http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat .. _get pip: http://pypi.python.org/pypi/pip diff --git a/mwparserfromhell/__init__.py b/mwparserfromhell/__init__.py index 6a45a11..3c011d0 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.3" +__version__ = "0.4.dev" __email__ = "ben.kurtovic@verizon.net" from . import (compat, definitions, nodes, parser, smart_list, string_mixin, diff --git a/setup.py b/setup.py index 3ef7e0e..d2ad17d 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ setup( "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" ],