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'