Skip to content

Commit

Permalink
release: version bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ifedapoolarewaju committed Jun 21, 2022
1 parent f536e56 commit 35789c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### 0.2.0/ 2022-21-06 ###

* Drop Python versions before 3.7 as they are unsupported
* Update code to Python 3 syntax
* Prevent rate limiting when polling Assembly status

### 0.1.12/ 2020-14-12 ###

Expand Down
2 changes: 1 addition & 1 deletion tests/test_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_get(self, mock):
mock.get(
url,
text='{"ok": "it works"}',
request_headers={"Transloadit-Client": "python-sdk:0.1.12"},
request_headers={"Transloadit-Client": "python-sdk:0.2.0"},
)

response = self.request.get("/foo")
Expand Down
2 changes: 1 addition & 1 deletion transloadit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.12"
__version__ = "0.2.0"

0 comments on commit 35789c5

Please sign in to comment.