From 20428a156a867b15d27564a483066e4c3f577070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= Date: Sat, 18 Jul 2015 21:13:51 +0200 Subject: [PATCH] Release 0.7.2 - Add zip_safe flag --- README.rst | 6 +++--- RELEASE-NOTES.md | 6 +++++- mwclient/client.py | 2 +- setup.py | 5 +++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 1b67dd73..d7fed470 100644 --- a/README.rst +++ b/README.rst @@ -20,8 +20,8 @@ For functions not available in the current MediaWiki, a ``MediaWikiVersionError` This framework was written by Bryan Tong Minh, who maintained the project until version 0.6.5, released on 6 May 2011. The current stable -`version 0.7.1 `_ -was released on 23 November 2014, and is `available through PyPI `_: +`version 0.7.2 `_ +was released on 18 July 2015, and is `available through PyPI `_: .. code-block:: console @@ -108,7 +108,7 @@ following example: .. code-block:: python - useragent = 'YourBot, based on mwclient v0.6.5. Run by User:You, you@gmail.com' + useragent = 'YourBot, based on mwclient v0.7.2. Run by User:You, you@gmail.com' site = mwclient.Site(('https', 'en.wikipedia.org'), clients_useragent=useragent) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 50bce9a5..5b585561 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,9 +1,13 @@ # Release Notes for mwclient -## Changes in version 0.7.2 + +## Changes in version 0.8.0 This is the development version of mwclient. +## Changes in version 0.7.2 + + * [2014-11-28] [@c-martinez](https://github.com/c-martinez): Add `continue` parameter to all queries. [#73](https://github.com/mwclient/mwclient/issues/73). diff --git a/mwclient/client.py b/mwclient/client.py index d00aa1c4..d4e1266a 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -29,7 +29,7 @@ except ImportError: gzip = None -__ver__ = '0.7.2.dev1' +__ver__ = '0.7.2' log = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index 7964c7a8..70fcdc94 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def run_tests(self): requirements.append('ordereddict') setup(name='mwclient', - version='0.7.2.dev1', # Rember to also update __ver__ in client.py + version='0.7.2', # Rember to also update __ver__ in client.py description='MediaWiki API client', long_description=README, classifiers=[ @@ -55,5 +55,6 @@ def run_tests(self): packages=['mwclient'], cmdclass={'test': PyTest}, tests_require=['pytest-pep8', 'pytest-cache', 'pytest', 'responses>=0.3.0'], - install_requires=requirements + install_requires=requirements, + zip_safe=True )