Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit ede20fe

Browse files
committed
chore(release): bump version to v1.3.1
1 parent 574c739 commit ede20fe

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

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

33

44

5+
## v1.3.1 (2023-11-29)
6+
7+
### Fix
8+
9+
* fix: remove unnecessary async to on_auth_state_change (#374) ([`574c739`](https://github.com/supabase-community/gotrue-py/commit/574c739500dd304aa6d09c69122373b6e4a5be01))
10+
11+
* fix: remove unnecessary async to on_auth_state_change
12+
13+
Somehow this got reverted on a refactor (https://github.com/supabase-community/gotrue-py/commit/e7ebc64112d970673265c7b314a1e8820fc0f7e1)
14+
15+
This causes problems when using the supabase client, since it's not being awaited:
16+
https://github.com/supabase-community/supabase-py/blob/main/supabase/_async/client.py#L90 ([`7548d02`](https://github.com/supabase-community/gotrue-py/commit/7548d0290199bdb1053564b953932c53aabdea29))
17+
18+
519
## v1.3.0 (2023-11-01)
620

721
### Chore
822

23+
* chore(release): bump version to v1.3.0 ([`abe3e2a`](https://github.com/supabase-community/gotrue-py/commit/abe3e2a871d97df4a91f2c4ae3a3c05e56e6e083))
24+
925
* chore: update CI config with PAT (#361) ([`fbddd6d`](https://github.com/supabase-community/gotrue-py/commit/fbddd6dbbeb67895f6d804f6a9fd804247ccf0c4))
1026

1127
* chore: update CI config with PAT ([`1fffc1f`](https://github.com/supabase-community/gotrue-py/commit/1fffc1fdebca39c35a9e69ea3d25240e13eb73b7))

gotrue/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
__version__ = "1.3.0"
3+
__version__ = "1.3.1"
44

55
from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401
66
from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401

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 = "gotrue"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Python Client Library for GoTrue"
55
authors = ["Joel Lee <[email protected]>"]
66
homepage = "https://github.com/supabase-community/gotrue-py"

0 commit comments

Comments
 (0)