diff --git a/README.rst b/README.rst index fdd25f3..fab0694 100644 --- a/README.rst +++ b/README.rst @@ -7,9 +7,10 @@ But uses `requests` instead of `PyCURL` Release Notes ============= -Version 0.4 - TBD +Version 0.4 - 27.11.2017 * Refactoring of WebDAV client and making it works in following methods: - Checking is remote resource directory + - Fixed problem when connection lost during request executing and nothing was happened, now it raises an exception. Version 0.3 - 18.10.2017 * Refactoring of WebDAV client and making it works in following methods: diff --git a/setup.py b/setup.py index f4f8d39..df7a5dc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages from setuptools.command.install import install as InstallCommand from setuptools.command.test import test as TestCommand -version = "0.3" +version = "0.4" requirements = "libxml2-dev libxslt-dev python-dev" @@ -51,7 +51,8 @@ setup( scripts=['wdc'], tests_require=['pytest', 'pyhamcrest', 'junit-xml', 'pytest-allure-adaptor'], cmdclass={'install': Install, 'test': Test}, - description='WebDAV client, based on original package https://github.com/designerror/webdav-client-python but uses requests instead of PyCURL', + description='WebDAV client, based on original package https://github.com/designerror/webdav-client-python but ' + 'uses requests instead of PyCURL', long_description=open('README.rst').read(), author='Evgeny Ezhov', author_email='ezhov.evgeny@gmail.com',