Skip to content

Commit 403418c

Browse files
author
github-actions
committed
chore(release): bump version to v0.3.2
1 parent 1f8897f commit 403418c

File tree

3 files changed

+58
-2
lines changed

3 files changed

+58
-2
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,64 @@
22

33

44

5+
## v0.3.2 (2024-01-03)
6+
7+
### Chore
8+
9+
* chore(deps-dev): bump isort from 5.12.0 to 5.13.0 (#24) ([`e7443ee`](https://github.com/supabase-community/functions-py/commit/e7443eeaad029a19a4276bae8ebfb899d042be3a))
10+
11+
* chore(deps-dev): bump isort from 5.12.0 to 5.13.0
12+
13+
Bumps [isort](https://github.com/pycqa/isort) from 5.12.0 to 5.13.0.
14+
- [Release notes](https://github.com/pycqa/isort/releases)
15+
- [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md)
16+
- [Commits](https://github.com/pycqa/isort/compare/5.12.0...5.13.0)
17+
18+
---
19+
updated-dependencies:
20+
- dependency-name: isort
21+
dependency-type: direct:development
22+
update-type: version-update:semver-minor
23+
...
24+
25+
Signed-off-by: dependabot[bot] <[email protected]> ([`89a31c9`](https://github.com/supabase-community/functions-py/commit/89a31c9afb987063f18dd853bc826e4d7e815be3))
26+
27+
* chore(deps-dev): bump pytest-asyncio from 0.21.1 to 0.23.2 (#22) ([`ab767f5`](https://github.com/supabase-community/functions-py/commit/ab767f5cf591679f38404cf609a42d853620c96f))
28+
29+
* chore(deps-dev): bump pytest-asyncio from 0.21.1 to 0.23.2
30+
31+
Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.21.1 to 0.23.2.
32+
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
33+
- [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.21.1...v0.23.2)
34+
35+
---
36+
updated-dependencies:
37+
- dependency-name: pytest-asyncio
38+
dependency-type: direct:development
39+
update-type: version-update:semver-minor
40+
...
41+
42+
Signed-off-by: dependabot[bot] <[email protected]> ([`f6fb590`](https://github.com/supabase-community/functions-py/commit/f6fb5906e99e5194413ef8b7f819ba82ae47355e))
43+
44+
* chore: allow manual workflow trigger for releases (#19) ([`07d1ffa`](https://github.com/supabase-community/functions-py/commit/07d1ffa6faa89219f7c73cbd4699436763d9d8bc))
45+
46+
* chore: allow manual workflow trigger for releases ([`2a01399`](https://github.com/supabase-community/functions-py/commit/2a013997215f417fb0efe2badfc9b8a2d3686c48))
47+
48+
### Ci
49+
50+
* ci: update workflow with new pypi project name (#34) ([`7564e2b`](https://github.com/supabase-community/functions-py/commit/7564e2bc1d157a279175a3c8ad6fb2708e1700f4))
51+
52+
### Fix
53+
54+
* fix: update httpx and other dev dependencies (#35) ([`1f8897f`](https://github.com/supabase-community/functions-py/commit/1f8897f88acc4449cd697bd0e122bd4ee3bf0417))
55+
56+
557
## v0.3.1 (2023-10-30)
658

59+
### Chore
60+
61+
* chore(release): bump version to v0.3.1 ([`b787f01`](https://github.com/supabase-community/functions-py/commit/b787f0187c1a5312ea368919afd24863ff2f40f0))
62+
763
### Fix
864

965
* fix: exceptions now has message in dictionary (#16) ([`7273927`](https://github.com/supabase-community/functions-py/commit/7273927aa9d0e6eb9d9c9985a7ba5b42f9b6296d))

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.3.1"
3+
version = "0.3.2"
44
description = "Library for Supabase Functions"
55
authors = [
66
"Joel Lee <[email protected]>",

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.3.1"
4+
__version__ = "0.3.2"
55

66

77
class SyncClient(BaseClient):

0 commit comments

Comments
 (0)