From 8496b3e0d8eb0cbd7d4d9663b864496abcda5e0e Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sun, 21 Jul 2024 12:25:32 +0000 Subject: [PATCH] chore(release): bump version to v0.5.0 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- supabase_functions/utils.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 854fb53..f5720e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,21 @@ # CHANGELOG +## v0.5.0 (2024-07-21) + +### Chore + +* chore(deps-dev): bump pytest-asyncio from 0.23.7 to 0.23.8 (#122) ([`e1d064b`](https://github.com/supabase-community/functions-py/commit/e1d064b75fc828cdd3972ab64e65b9868043246c)) + +### Feature + +* feat: add edge functions timeout (#120) ([`d0abc3c`](https://github.com/supabase-community/functions-py/commit/d0abc3c6a03ce0b2347379b0d7ffdc9f4d37b287)) + ## v0.4.7 (2024-07-14) ### Chore +* chore(release): bump version to v0.4.7 ([`9d200a9`](https://github.com/supabase-community/functions-py/commit/9d200a97bf89c296e975d4d63aa15b12be6b646a)) + * chore(deps-dev): bump python-semantic-release from 9.8.3 to 9.8.5 (#119) ([`d3e1104`](https://github.com/supabase-community/functions-py/commit/d3e1104f221ce7274789856b5a3704f8aa25e60f)) * chore(deps): bump python-semantic-release/python-semantic-release from 9.8.3 to 9.8.5 (#118) ([`0403bfb`](https://github.com/supabase-community/functions-py/commit/0403bfb84fb9e624974c16880f61a77cc244ff17)) diff --git a/pyproject.toml b/pyproject.toml index bd3d327..e5637a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_functions" -version = "0.4.7" +version = "0.5.0" description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supabase_functions/utils.py b/supabase_functions/utils.py index 096d3c6..020451d 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.7" +__version__ = "0.5.0" DEFAULT_FUNCTION_CLIENT_TIMEOUT = 5