diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0d0eaf9..40e405a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,10 @@ version: 2 updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + target-branch: "main" - package-ecosystem: "pip" directory: "/" schedule: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a9d658..51c8333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,19 @@ +## v0.4.0 (2024-02-29) + +### Feature + +* feat: add actions to dependabot.yml (#49) ([`0fa1c6b`](https://github.com/supabase-community/functions-py/commit/0fa1c6b91363714a0f889d73e52a47ca2e5be349)) + + ## v0.3.3 (2024-01-03) +### Chore + +* chore(release): bump version to v0.3.3 ([`cd02bb2`](https://github.com/supabase-community/functions-py/commit/cd02bb26e501adb6c66007f637af0ba87b37a6f0)) + ### Fix * fix: update job to publish legacy package if current is released (#36) ([`2565c37`](https://github.com/supabase-community/functions-py/commit/2565c372124c08bc2a0bd8fd4b3005cf427062e3)) diff --git a/pyproject.toml b/pyproject.toml index 6d1d298..e08f802 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "supabase_functions" -version = "0.3.3" +name = "supafunc" +version = "0.4.0" description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supabase_functions/utils.py b/supabase_functions/utils.py index b3b22f4..e1dee94 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.3.3" +__version__ = "0.4.0" class SyncClient(BaseClient):