Skip to content
Snippets Groups Projects
Commit 48b7d05f authored by Dan Michael O. Heggø's avatar Dan Michael O. Heggø
Browse files

Release 0.8.2

parent fb4e53d6
No related branches found
Tags v0.8.2
No related merge requests found
...@@ -43,8 +43,8 @@ which provides access to most API functionality. ...@@ -43,8 +43,8 @@ which provides access to most API functionality.
It works with Python 2.7, 3.3 and above, and supports MediaWiki 1.16 and above. It works with Python 2.7, 3.3 and above, and supports MediaWiki 1.16 and above.
For functions not available in the current MediaWiki, a ``MediaWikiVersionError`` is raised. For functions not available in the current MediaWiki, a ``MediaWikiVersionError`` is raised.
The current stable `version 0.8.1 <https://github.com/mwclient/mwclient/archive/v0.8.1.zip>`_ The current stable `version 0.8.2 <https://github.com/mwclient/mwclient/archive/v0.8.2.zip>`_
was released on 5 February 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: was released on 23 October 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
.. code-block:: console .. code-block:: console
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
## Changes in version 0.8.2 ## Changes in version 0.8.2
This is the development version of mwclient. You can review the Mwclient 0.8.2 was released on 23 October 2016.
[full list of changes since v0.8.1](https://github.com/mwclient/mwclient/compare/v0.8.1...master). Release notes can be found [here](https://github.com/mwclient/mwclient/releases/tag/v0.8.2).
## Changes in version 0.8.1 ## Changes in version 0.8.1
......
...@@ -24,7 +24,7 @@ try: ...@@ -24,7 +24,7 @@ try:
except ImportError: except ImportError:
gzip = None gzip = None
__ver__ = '0.8.2.dev1' __ver__ = '0.8.2'
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
......
...@@ -39,7 +39,7 @@ if sys.version_info < (2, 7): ...@@ -39,7 +39,7 @@ if sys.version_info < (2, 7):
requirements.append('ordereddict') requirements.append('ordereddict')
setup(name='mwclient', setup(name='mwclient',
version='0.8.2.dev1', # Rember to also update __ver__ in client.py version='0.8.2', # Rember to also update __ver__ in client.py
description='MediaWiki API client', description='MediaWiki API client',
long_description=README, long_description=README,
classifiers=[ classifiers=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment