From 83951bfcea0143a7e3692db6ca98eb7de233048a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com>
Date: Mon, 31 Jul 2017 14:03:25 +0200
Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.5=20=E2=86=92=200.8.6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

diff --git a/README.rst b/README.rst
index fd7fe23..7baaffa 100644
--- a/README.rst
+++ b/README.rst
@@ -43,7 +43,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.5 <https://github.com/mwclient/mwclient/archive/v0.8.5.zip>`_
+The current stable `version 0.8.6 <https://github.com/mwclient/mwclient/archive/v0.8.6.zip>`_
 was released on 18 May 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 35c36c6..a954fdf 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -24,7 +24,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.8.5'
+__ver__ = '0.8.6'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.cfg b/setup.cfg
index 62d9b80..a5f54e5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,11 +1,11 @@
-[aliases]
-test=pytest
-
 [bumpversion]
-current_version = 0.8.5
+current_version = 0.8.6
 commit = True
 tag = True
 
+[aliases]
+test = pytest
+
 [bumpversion:file:setup.py]
 
 [bumpversion:file:mwclient/client.py]
@@ -18,3 +18,4 @@ universal = 1
 [tool:pytest]
 pep8ignore = E501 W602
 addopts = -v --pep8 tests mwclient --cov mwclient
+
diff --git a/setup.py b/setup.py
index 385b142..eca6c49 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ here = os.path.abspath(os.path.dirname(__file__))
 README = open(os.path.join(here, 'README.rst')).read()
 
 setup(name='mwclient',
-      version='0.8.5',  # Use bumpversion to update
+      version='0.8.6',  # Use bumpversion to update
       description='MediaWiki API client',
       long_description=README,
       classifiers=[
-- 
GitLab