diff --git a/README.rst b/README.rst index 1b67dd73f3eaa946fbf7f2c7bef358a8cad8579d..d7fed470d19dae6bc1c3d2d5792cf09f3407b3ee 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 <https://github.com/mwclient/mwclient/archive/v0.7.1.zip>`_ -was released on 23 November 2014, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: +`version 0.7.2 <https://github.com/mwclient/mwclient/archive/v0.7.2.zip>`_ +was released on 18 July 2015, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_: .. 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 50bce9a5a0174695ebaf1ff3842fb655e982e6ea..5b58556123ac3fb0cf651065eeda372368fd880c 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 d00aa1c4f2d7d682a7ce5c0f65dadfa8b2aa3696..d4e1266a1c51a3d04178ea8d0fae4658b5fe061f 100644 --- a/mwclient/client.py +++ b/mwclient/client.py @@ -29,7 +29,7 @@ try: 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 7964c7a82504bf60a229b01810b6e96135ce801e..70fcdc944306fcc0d2fc68279933e530c8cd056c 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ if sys.version_info < (2, 7): 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 @@ setup(name='mwclient', 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 )