From e1a9aae0457f5a45b54cc9d85131444fed9dd87d Mon Sep 17 00:00:00 2001 From: Marius Date: Fri, 17 Jun 2022 15:04:11 +0200 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 9 +++++++++ tusclient/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 999b7dc..ba17646 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### 1.0.0 / 2022-06-17 ### + +* Drop support for Python 2 (https://github.com/tus/tus-py-client/pull/35) +* Add support for asyncIO using AsyncUploader class (https://github.com/tus/tus-py-client/pull/35) +* Use only first block of the file for a finger print (https://github.com/tus/tus-py-client/pull/37) +* Allow all 2XX status code for an upload response (https://github.com/tus/tus-py-client/pull/44) + +### 0.2.5 / 2020-06-5 ### + ### 0.2.4/ 2019-14-01 ### * Add support for tus upload-checksum header diff --git a/tusclient/__init__.py b/tusclient/__init__.py index a6587ae..1f356cc 100644 --- a/tusclient/__init__.py +++ b/tusclient/__init__.py @@ -1 +1 @@ -__version__ = '0.2.4' +__version__ = '1.0.0'