Skip to content

Commit b787f01

Browse files
author
github-actions
committed
chore(release): bump version to v0.3.1
1 parent 7273927 commit b787f01

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,23 @@
22

33

44

5+
## v0.3.1 (2023-10-30)
6+
7+
### Fix
8+
9+
* fix: exceptions now has message in dictionary (#16) ([`7273927`](https://github.com/supabase-community/functions-py/commit/7273927aa9d0e6eb9d9c9985a7ba5b42f9b6296d))
10+
11+
* fix: exceptions now has message in dictionary
12+
13+
Added tests to check for the messages. ([`07a813a`](https://github.com/supabase-community/functions-py/commit/07a813a02ffcf8999802cece27ee5278c140760d))
14+
15+
516
## v0.3.0 (2023-10-29)
617

18+
### Chore
19+
20+
* chore(release): bump version to v0.3.0 ([`4e18712`](https://github.com/supabase-community/functions-py/commit/4e1871215e72efed058d5adf619ae2be0bb27b56))
21+
722
### Feature
823

924
* feat: downgrade httpx dep to 0.24.0 (#15) ([`1f37216`](https://github.com/supabase-community/functions-py/commit/1f37216326c26b65a3c9ccd1c29bea0a184c7624))

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.0"
3+
version = "0.3.1"
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.0"
4+
__version__ = "0.3.1"
55

66

77
class SyncClient(BaseClient):

0 commit comments

Comments
 (0)