diff --git a/README.md b/README.md index 4737c633..7d27f273 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.0](https://github.com/mwclient/mwclient/archive/v0.9.0.zip) +[version 0.9.1](https://github.com/mwclient/mwclient/archive/v0.9.1.zip) is [available through PyPI](https://pypi.python.org/pypi/mwclient): ``` diff --git a/mwclient/client.py b/mwclient/client.py index 2408e45e..acc784b7 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -24,7 +24,7 @@ except ImportError: gzip = None -__ver__ = '0.9.0' +__ver__ = '0.9.1' log = logging.getLogger(__name__) diff --git a/setup.cfg b/setup.cfg index d9c4c547..a5542815 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.9.1 commit = True tag = True diff --git a/setup.py b/setup.py index 85961e54..888a93ce 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.0', # Use bumpversion to update + version='0.9.1', # Use bumpversion to update description='MediaWiki API client', long_description=README, long_description_content_type='text/markdown',