From 6ca09e7b4cff12112599e2a1ea714f6f5f6af453 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 7 Jun 2022 07:53:48 +0000 Subject: [PATCH] chore(release): bump version to v0.3.4 Automatically generated by python-semantic-release --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- storage3/utils.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e38e1f0c..f7266cef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.3.4 (2022-06-07) +### Fix +* Signed_url ([`c8cdf44`](https://github.com/supabase-community/storage-py/commit/c8cdf444090e7d9c6cd68ac4f31afb52921c3ea5)) +* Try no timeout as fix instead of sleep ([`68026be`](https://github.com/supabase-community/storage-py/commit/68026be058a5e5a0684d7bc174da674dfc6a137c)) +* Signed_url ([`bd2e09c`](https://github.com/supabase-community/storage-py/commit/bd2e09c28164b364ca919fd888019e837af3890f)) + +**[See all commits in this version](https://github.com/supabase-community/storage-py/compare/v0.3.3...v0.3.4)** + ## v0.3.3 (2022-06-06) ### Fix * Upload method ([`844561f`](https://github.com/supabase-community/storage-py/commit/844561f63d58ad869a4303941e7ef8194ae89154)) diff --git a/pyproject.toml b/pyproject.toml index a3394914..a5b55e65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ license = "MIT" name = "storage3" readme = "README.md" repository = "https://github.com/supabase-community/storage-py" -version = "0.3.3" +version = "0.3.4" [tool.poetry.dependencies] httpx = ">=0.19,<0.22" diff --git a/storage3/utils.py b/storage3/utils.py index 628ab545..bb45a2fe 100644 --- a/storage3/utils.py +++ b/storage3/utils.py @@ -1,7 +1,7 @@ from httpx import AsyncClient as AsyncClient # noqa: F401 from httpx import Client as BaseClient -__version__ = "0.3.3" +__version__ = "0.3.4" class SyncClient(BaseClient):