From 97ad54f0766fe35a6803e8611a0d0a428b3be242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com> Date: Thu, 23 Feb 2017 20:53:15 +0100 Subject: [PATCH] Bump version to 0.8.4 --- README.rst | 4 ++-- mwclient/client.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index d137cde..39b0d3f 100644 --- a/README.rst +++ b/README.rst @@ -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. For functions not available in the current MediaWiki, a ``MediaWikiVersionError`` is raised. -The current stable `version 0.8.2 <https://github.com/mwclient/mwclient/archive/v0.8.2.zip>`_ -was released on 23 October 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: +The current stable `version 0.8.4 <https://github.com/mwclient/mwclient/archive/v0.8.4.zip>`_ +was released on 23 February 2017, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: .. code-block:: console diff --git a/mwclient/client.py b/mwclient/client.py index d6ae699..4f03903 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -24,7 +24,7 @@ try: except ImportError: gzip = None -__ver__ = '0.8.2' +__ver__ = '0.8.4' log = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index 9a9dbb3..8b76aa0 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.2', # Rember to also update __ver__ in client.py + version='0.8.4', # Rember to also update __ver__ in client.py description='MediaWiki API client', long_description=README, classifiers=[ -- GitLab