From 2f2b3a6f143826c8eb36c96ee679fa5c2adaec10 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Mon, 24 Jul 2023 22:24:31 +0200 Subject: [PATCH] chore: bump pyproject --- pyproject.toml | 2 +- storage3/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bda90767..c2d067df 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.2" +version = "0.5.3" [tool.poetry.dependencies] httpx = ">=0.23,<0.25" diff --git a/storage3/utils.py b/storage3/utils.py index d8a667bd..4b374cd0 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.2" +__version__ = "0.5.3" class SyncClient(BaseClient):