diff --git a/README.rst b/README.rst index a2f149c..e0e2f31 100644 --- a/README.rst +++ b/README.rst @@ -11,6 +11,10 @@ But uses `requests` instead of `PyCURL` Release Notes ============= +**Version 0.12 - 21.06.2019** + * Added depth argument in copy method in client.py by https://github.com/JesperHakansson + * Added verify attribute to execute_request method by https://github.com/JesperHakansson + **Version 0.11 – 30.03.2019** * Fixed MemoryError if a large file is downloaded with a 32 bit python by https://github.com/bboehmke * Fixed argcomplete is required to run wdc but was not included in the requirements by https://github.com/evanhorn diff --git a/setup.py b/setup.py index 235e878..39eefa2 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.11" +version = "0.12" requirements = "libxml2-dev libxslt-dev python-dev"