diff --git a/CHANGELOG.md b/CHANGELOG.md index 59083f5..d4ecb1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,19 @@ +## v0.4.4 (2024-03-23) + +### Fix + +* fix: update to perform build via poetry (#70) ([`d518ce5`](https://github.com/supabase-community/functions-py/commit/d518ce5b81fef2ec30907c9261fde29522e37222)) + + ## v0.4.3 (2024-03-23) +### Chore + +* chore(release): bump version to v0.4.3 ([`5c707e9`](https://github.com/supabase-community/functions-py/commit/5c707e998df07afdd67c629f034e954564a1c65b)) + ### Fix * fix: add supafunc package distribution (#69) ([`d8a6f9a`](https://github.com/supabase-community/functions-py/commit/d8a6f9a89909c5d4bc3d6c11fb369407931c9cc5)) diff --git a/pyproject.toml b/pyproject.toml index b53aeae..95cc5fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_functions" -version = "0.4.3" +version = "0.4.4" description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supabase_functions/utils.py b/supabase_functions/utils.py index 73dc44d..3b36ff8 100644 --- a/supabase_functions/utils.py +++ b/supabase_functions/utils.py @@ -1,7 +1,7 @@ from httpx import AsyncClient as AsyncClient # noqa: F401 from httpx import Client as BaseClient -__version__ = "0.4.3" +__version__ = "0.4.4" class SyncClient(BaseClient):