From 5d8b6238cb4f602fc00c1deaab4164e8a9185202 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 5 Jan 2023 09:11:12 +0000 Subject: [PATCH] chore(release): bump version to v0.3.6 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- storage3/utils.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c0e0bf..0cbee0af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog + +## v0.3.6 (2023-01-05) +### Fix +* Datetime and upload file type ([#12](https://github.com/supabase-community/storage-py/issues/12)) ([`a926a06`](https://github.com/supabase-community/storage-py/commit/a926a068234e68afbf8039fc7f71565397dfea86)) +* Remove trailing "/" in `get_public_url` ([`8bf407c`](https://github.com/supabase-community/storage-py/commit/8bf407c5fc2bca401a673d42d0f9a82b7b9e80bb)) + +**[See all commits in this version](https://github.com/supabase-community/storage-py/compare/v0.3.5...v0.3.6)** ## v0.3.5 (2022-06-07) ### Fix * Justinbarak patch 1 by @justinbarak in https://github.com/supabase-community/storage-py/pull/14 diff --git a/pyproject.toml b/pyproject.toml index d489ed60..0ecc163e 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.5" +version = "0.3.6" [tool.poetry.dependencies] httpx = "^0.23" diff --git a/storage3/utils.py b/storage3/utils.py index 28fa9ea5..a6484d7a 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.5" +__version__ = "0.3.6" class SyncClient(BaseClient):