Skip to content

Commit 4e18712

Browse files
author
github-actions
committed
chore(release): bump version to v0.3.0
1 parent 1f37216 commit 4e18712

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,29 @@
22

33

44

5+
## v0.3.0 (2023-10-29)
6+
7+
### Feature
8+
9+
* feat: downgrade httpx dep to 0.24.0 (#15) ([`1f37216`](https://github.com/supabase-community/functions-py/commit/1f37216326c26b65a3c9ccd1c29bea0a184c7624))
10+
11+
### Fix
12+
13+
* fix: update lockfile ([`d4856ec`](https://github.com/supabase-community/functions-py/commit/d4856ec8c6bbbde7efe7ca67c5137ba75e8e7bdb))
14+
15+
### Unknown
16+
17+
* Update pyproject.toml ([`dd43949`](https://github.com/supabase-community/functions-py/commit/dd4394994ae995dd6f953093da73cbd9c1344483))
18+
19+
* Restoring order to the CI/CD pipeline ([`4f28dc6`](https://github.com/supabase-community/functions-py/commit/4f28dc628c9a9aac27a153121c90960bddb5c8bf))
20+
21+
522
## v0.2.4 (2023-10-25)
623

724
### Chore
825

26+
* chore(release): bump version to v0.2.4 ([`f618547`](https://github.com/supabase-community/functions-py/commit/f61854760d2d90d1352962e427d099da6dac50c1))
27+
928
* chore: update readme with correct function call ([`88fc1a7`](https://github.com/supabase-community/functions-py/commit/88fc1a797ef7d848bd2e870ddadcf8d51d405989))
1029

1130
* chore(release): bump version to v0.2.4 ([`e958722`](https://github.com/supabase-community/functions-py/commit/e95872200a7470da0e92bd95431eea1e20c66df3))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "supafunc"
3-
version = "0.2.4"
3+
version = "0.3.0"
44
description = "Library for Supabase Functions"
55
authors = [
66
"Joel Lee <joel@joellee.org>",

supafunc/utils.py

Lines changed: 1 addition & 1 deletion
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.2.4"
4+
__version__ = "0.3.0"
55

66

77
class SyncClient(BaseClient):

0 commit comments

Comments
 (0)