diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f98b1a..fe002df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 1.0.3 / 2023-12-13 + +- Add explicit test fixtures to fix tests on Windows by @nhairs in https://github.com/tus/tus-py-client/pull/91 +- Remove unneeded `six` dependency (was used for Python 2) by @a-detiste in https://github.com/tus/tus-py-client/pull/90 +- Fix calls to `upload_chunk` by @Acconut in https://github.com/tus/tus-py-client/pull/92 + ### 1.0.2 / 2023-11-30 - Remove unnecessary future install requirement [#81](https://github.com/tus/tus-py-client/pulls/81) diff --git a/tusclient/__init__.py b/tusclient/__init__.py index 7863915..976498a 100644 --- a/tusclient/__init__.py +++ b/tusclient/__init__.py @@ -1 +1 @@ -__version__ = "1.0.2" +__version__ = "1.0.3"