diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c9036..3a9d658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,19 @@ +## v0.3.3 (2024-01-03) + +### Fix + +* fix: update job to publish legacy package if current is released (#36) ([`2565c37`](https://github.com/supabase-community/functions-py/commit/2565c372124c08bc2a0bd8fd4b3005cf427062e3)) + + ## v0.3.2 (2024-01-03) ### Chore +* chore(release): bump version to v0.3.2 ([`403418c`](https://github.com/supabase-community/functions-py/commit/403418cc3a801be12e73f84e53daddd517cd5de0)) + * chore(deps-dev): bump isort from 5.12.0 to 5.13.0 (#24) ([`e7443ee`](https://github.com/supabase-community/functions-py/commit/e7443eeaad029a19a4276bae8ebfb899d042be3a)) * chore(deps-dev): bump isort from 5.12.0 to 5.13.0 diff --git a/pyproject.toml b/pyproject.toml index c7989c8..6ba7830 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supafunc" -version = "0.3.2" +version = "0.3.3" description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supafunc/utils.py b/supafunc/utils.py index 22a4016..b3b22f4 100644 --- a/supafunc/utils.py +++ b/supafunc/utils.py @@ -1,7 +1,7 @@ from httpx import AsyncClient as AsyncClient # noqa: F401 from httpx import Client as BaseClient -__version__ = "0.3.2" +__version__ = "0.3.3" class SyncClient(BaseClient):