From 91c4456b55113347d4da2dc26ee3a08dd893ea0e Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Sun, 5 Mar 2023 23:08:03 +0800 Subject: [PATCH] chore: bump version --- pyproject.toml | 2 +- storage3/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7063c1a2..79c9c122 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.5.1" +version = "0.5.2" [tool.poetry.dependencies] httpx = "^0.23" diff --git a/storage3/utils.py b/storage3/utils.py index d02548b2..d8a667bd 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.5.1" +__version__ = "0.5.2" class SyncClient(BaseClient):