diff --git a/CHANGELOG.md b/CHANGELOG.md index dd6952d..9660e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,19 @@ +## v0.4.2 (2024-03-23) + +### Fix + +* fix: ci workflow (#68) ([`a747a72`](https://github.com/supabase-community/functions-py/commit/a747a729b35d31197d2b772d2f5ddc9e5ec9daed)) + + ## v0.4.1 (2024-03-23) ### Chore +* chore(release): bump version to v0.4.1 ([`f9a9a2f`](https://github.com/supabase-community/functions-py/commit/f9a9a2feede1cec36d9a9c9dc35d64594d4f1f84)) + * chore(deps-dev): bump python-semantic-release from 9.2.0 to 9.3.0 (#66) Signed-off-by: dependabot[bot] <support@github.com> diff --git a/pyproject.toml b/pyproject.toml index 3eda1f0..49c7483 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_functions" -version = "0.4.1" +version = "0.4.2" description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supabase_functions/utils.py b/supabase_functions/utils.py index 804d747..b8daf3f 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.1" +__version__ = "0.4.2" class SyncClient(BaseClient):