From 2f050b1a3550c07c7e2f8f8f01e29e83500a6883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= Date: Thu, 22 Nov 2018 22:21:27 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.2=20=E2=86=92=200.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- mwclient/client.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e6041bdc..6d8788ca 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ For functions not available in the current MediaWiki, a `MediaWikiVersionError` is raised. The current stable -[version 0.9.2](https://github.com/mwclient/mwclient/archive/v0.9.2.zip) +[version 0.9.3](https://github.com/mwclient/mwclient/archive/v0.9.3.zip) is [available through PyPI](https://pypi.python.org/pypi/mwclient): ``` diff --git a/mwclient/client.py b/mwclient/client.py index 4f39bb44..c4a9bff4 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -24,7 +24,7 @@ except ImportError: gzip = None -__ver__ = '0.9.2' +__ver__ = '0.9.3' log = logging.getLogger(__name__) diff --git a/setup.cfg b/setup.cfg index ba13f56e..8b173f47 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2 +current_version = 0.9.3 commit = True tag = True diff --git a/setup.py b/setup.py index c6951ea2..ec526b94 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ pytest_runner = ['pytest-runner'] if needs_pytest else [] setup(name='mwclient', - version='0.9.2', # Use bumpversion to update + version='0.9.3', # Use bumpversion to update description='MediaWiki API client', long_description=README, long_description_content_type='text/markdown',