Skip to content

Commit

Permalink
Merge branch 'main' into chore/rename-package
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Feb 29, 2024
2 parents 09d1984 + 555df53 commit 8c95971
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
target-branch: "main"
- package-ecosystem: "pip"
directory: "/"
schedule:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <joel@joellee.org>",
Expand Down
2 changes: 1 addition & 1 deletion supabase_functions/utils.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit 8c95971

Please sign in to comment.