diff --git a/README.rst b/README.rst index f71b9380181841a487c7ca034298ce600a8abaea..0c2ae2d5a1ead385627b09caf748312fd933a4db 100644 --- a/README.rst +++ b/README.rst @@ -37,8 +37,8 @@ For functions not available in the current MediaWiki, a ``MediaWikiVersionError` This framework was written by Bryan Tong Minh, who maintained the project until version 0.6.5, released on 6 May 2011. The current stable -`version 0.8.0 <https://github.com/mwclient/mwclient/archive/v0.8.0.zip>`_ -was released on 10 January 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: +`version 0.8.1 <https://github.com/mwclient/mwclient/archive/v0.8.1.zip>`_ +was released on 5 February 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: .. code-block:: console diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 6e1655c8a7014eea83bee24bbf304a4969b491dc..621c1c59e863661ae31bdee1f0cb65199afb661c 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,11 +1,18 @@ # Release Notes for mwclient -## Changes in version 0.8.1 +## Changes in version 0.8.2 This is the development version of mwclient. +## Changes in version 0.8.1 + +Mwclient 0.8.1 was released on 5 February 2016. + * [2016-01-23] [@Danmichaelo](https://github.com/Danmichaelo) Add more options to `Site.parse`. +* [2016-02-05] [@tosher](https://github.com/tosher) [@AdamWill](https://github.com/AdamWill) + Fix GeneratorList with Python 3. + [#106](https://github.com/mwclient/mwclient/issues/106) ## Changes in version 0.8.0 diff --git a/mwclient/client.py b/mwclient/client.py index 31c4e1bc86f263f4ad4b7efd0e9cbc5e836503a1..1fa5feddd783e6d5638d9aa3166e1e24d2b475b7 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -28,7 +28,7 @@ try: except ImportError: gzip = None -__ver__ = '0.8.1.dev1' +__ver__ = '0.8.1' log = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index 4d271e2943d2b15641750876fd347e8bff31e664..979c42dbb9eca913840c40db570631b8767e3cd1 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ if sys.version_info < (2, 7): requirements.append('ordereddict') setup(name='mwclient', - version='0.8.1.dev1', # Rember to also update __ver__ in client.py + version='0.8.1', # Rember to also update __ver__ in client.py description='MediaWiki API client', long_description=README, classifiers=[