diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89846712..76274c6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Poetry uses: abatilo/actions-poetry@v2.2.0 with: - poetry-version: 1.3.0 + poetry-version: 1.3.2 - name: Run Tests run: make run_tests diff --git a/pyproject.toml b/pyproject.toml index 76292997..92b42ea9 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.0" +version = "0.5.1" [tool.poetry.dependencies] httpx = "^0.23" diff --git a/storage3/utils.py b/storage3/utils.py index e087b984..d02548b2 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.0" +__version__ = "0.5.1" class SyncClient(BaseClient):