From 83951bfcea0143a7e3692db6ca98eb7de233048a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= 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 fd7fe237..7baaffa2 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 `_ +The current stable `version 0.8.6 `_ was released on 18 May 2017, and is `available through PyPI `_: .. code-block:: console diff --git a/mwclient/client.py b/mwclient/client.py index 35c36c60..a954fdf2 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -24,7 +24,7 @@ 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 62d9b80c..a5f54e50 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 385b142c..eca6c495 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ 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=[