From 2a846cc457e55a3379d9acaa785a191f0eeb0640 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com>
Date: Sun, 14 Jan 2018 16:08:54 +0100
Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.6=20=E2=86=92=200.8.7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 README.rst         | 2 +-
 mwclient/client.py | 2 +-
 setup.cfg          | 2 +-
 setup.py           | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.rst b/README.rst
index 1bffc6e..4d02d8e 100644
--- a/README.rst
+++ b/README.rst
@@ -44,7 +44,7 @@ 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.6 <https://github.com/mwclient/mwclient/archive/v0.8.6.zip>`_
+The current stable `version 0.8.7 <https://github.com/mwclient/mwclient/archive/v0.8.7.zip>`_
 is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
 
 .. code-block:: console
diff --git a/mwclient/client.py b/mwclient/client.py
index d1d58b3..85c5058 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -24,7 +24,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.8.6'
+__ver__ = '0.8.7'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.cfg b/setup.cfg
index ab13883..4dcfd33 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.8.6
+current_version = 0.8.7
 commit = True
 tag = True
 
diff --git a/setup.py b/setup.py
index 660d93b..8870894 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
 pytest_runner = ['pytest-runner'] if needs_pytest else []
 
 setup(name='mwclient',
-      version='0.8.6',  # Use bumpversion to update
+      version='0.8.7',  # Use bumpversion to update
       description='MediaWiki API client',
       long_description=README,
       classifiers=[
-- 
GitLab