From 51458a439b594e9a88ef2f453584211bc8cfc656 Mon Sep 17 00:00:00 2001 From: Evgeny Ezhov Date: Thu, 31 Jan 2019 15:44:03 +0300 Subject: [PATCH] Update before release 0.10 --- README.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"