Skip to content

Commit 555df53

Browse files
author
github-actions
committed
chore(release): bump version to v0.4.0
1 parent 0fa1c6b commit 555df53

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,19 @@
22

33

44

5+
## v0.4.0 (2024-02-29)
6+
7+
### Feature
8+
9+
* feat: add actions to dependabot.yml (#49) ([`0fa1c6b`](https://github.com/supabase-community/functions-py/commit/0fa1c6b91363714a0f889d73e52a47ca2e5be349))
10+
11+
512
## v0.3.3 (2024-01-03)
613

14+
### Chore
15+
16+
* chore(release): bump version to v0.3.3 ([`cd02bb2`](https://github.com/supabase-community/functions-py/commit/cd02bb26e501adb6c66007f637af0ba87b37a6f0))
17+
718
### Fix
819

920
* fix: update job to publish legacy package if current is released (#36) ([`2565c37`](https://github.com/supabase-community/functions-py/commit/2565c372124c08bc2a0bd8fd4b3005cf427062e3))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "supafunc"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
description = "Library for Supabase Functions"
55
authors = [
66
"Joel Lee <[email protected]>",

supafunc/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from httpx import AsyncClient as AsyncClient # noqa: F401
22
from httpx import Client as BaseClient
33

4-
__version__ = "0.3.3"
4+
__version__ = "0.4.0"
55

66

77
class SyncClient(BaseClient):

0 commit comments

Comments
 (0)