diff --git a/README.rst b/README.rst index 9753a2f..3fabdfb 100644 --- a/README.rst +++ b/README.rst @@ -11,6 +11,12 @@ But uses `requests` instead of `PyCURL` Release Notes ============= +**Version 0.10 – 31.01.2018** + * AssertEquals deprecation warnings by https://github.com/StefanZi + * Problems with byte/UTF strings and xml library by https://github.com/StefanZi + * Add some Eclipse specific files to gitignore by https://github.com/StefanZi + * Remove filesize limit by https://github.com/StefanZi + **Version 0.9 – 10.05.2018** * Client.mkdir now accepts 201 HTTP-code by https://github.com/a1ezzz * Tests are updated diff --git a/setup.py b/setup.py index d5c15b9..a01bee8 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.9" +version = "0.10" requirements = "libxml2-dev libxslt-dev python-dev"