prepare to publish v0.4
This commit is contained in:
parent
44ec8fcc66
commit
354cf64d22
2 changed files with 5 additions and 3 deletions
|
@ -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:
|
||||
|
|
5
setup.py
5
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',
|
||||
|
|
Loading…
Add table
Reference in a new issue