From 90a110fb09336e5e421f75f85ef844d342c3f68e Mon Sep 17 00:00:00 2001 From: ifedapoolarewaju Date: Mon, 29 Aug 2022 11:59:39 +0100 Subject: [PATCH] release: version bump to 0.2.1 --- CHANGELOG.md | 5 +++++ tests/test_request.py | 2 +- transloadit/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bd65c2..2d6f8b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 0.2.1/ 2022-29-08 ### + +* Add documentation on publishing releases +* Avoid creating a new Assembly when a rate limit error is received from fetching an Assembly too frequently + ### 0.2.0/ 2022-21-06 ### * Drop Python versions before 3.7 as they are unsupported diff --git a/tests/test_request.py b/tests/test_request.py index 6262873..92645fd 100644 --- a/tests/test_request.py +++ b/tests/test_request.py @@ -19,7 +19,7 @@ def test_get(self, mock): mock.get( url, text='{"ok": "it works"}', - request_headers={"Transloadit-Client": "python-sdk:0.2.0"}, + request_headers={"Transloadit-Client": "python-sdk:0.2.1"}, ) response = self.request.get("/foo") diff --git a/transloadit/__init__.py b/transloadit/__init__.py index d3ec452..3ced358 100644 --- a/transloadit/__init__.py +++ b/transloadit/__init__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1"