Skip to content

Commit

Permalink
Bump version: 0.10.0 → 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed May 28, 2020
1 parent 1b51ec8 commit 79a4eaf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -29,7 +29,7 @@ For functions not available in the current MediaWiki,
a `MediaWikiVersionError` is raised.

The current stable
[version 0.10.0](https://github.com/mwclient/mwclient/archive/v0.10.0.zip)
[version 0.10.1](https://github.com/mwclient/mwclient/archive/v0.10.1.zip)
is [available through PyPI](https://pypi.python.org/pypi/mwclient):

```
Expand Down
4 changes: 2 additions & 2 deletions mwclient/client.py
Expand Up @@ -21,7 +21,7 @@
except ImportError:
gzip = None

__version__ = '0.10.0'
__version__ = '0.10.1'

log = logging.getLogger(__name__)

Expand Down Expand Up @@ -376,7 +376,7 @@ def raw_call(self, script, data, files=None, retry_on_error=True, http_method='P
host = self.host
if isinstance(host, (list, tuple)):
warnings.warn(
'Specifying host as a tuple is deprecated as of mwclient 0.10.0. '
'Specifying host as a tuple is deprecated as of mwclient 0.10.1. '
+ 'Please use the new scheme argument instead.',
DeprecationWarning
)
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.10.1
commit = True
tag = True

Expand All @@ -22,6 +22,5 @@ addopts = --cov mwclient test

[flake8]
max-line-length = 90
ignore =
ignore =
W503 # Line break before binary operator

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@
pytest_runner = ['pytest-runner'] if needs_pytest else []

setup(name='mwclient',
version='0.10.0', # Use bumpversion to update
version='0.10.1', # Use bumpversion to update
description='MediaWiki API client',
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 79a4eaf

Please sign in to comment.