Skip to content

Commit

Permalink
chore(release): bump version to v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 29, 2023
1 parent 574c739 commit ede20fe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,26 @@



## v1.3.1 (2023-11-29)

### Fix

* fix: remove unnecessary async to on_auth_state_change (#374) ([`574c739`](https://github.com/supabase-community/gotrue-py/commit/574c739500dd304aa6d09c69122373b6e4a5be01))

* fix: remove unnecessary async to on_auth_state_change

Somehow this got reverted on a refactor (https://github.com/supabase-community/gotrue-py/commit/e7ebc64112d970673265c7b314a1e8820fc0f7e1)

This causes problems when using the supabase client, since it's not being awaited:
https://github.com/supabase-community/supabase-py/blob/main/supabase/_async/client.py#L90 ([`7548d02`](https://github.com/supabase-community/gotrue-py/commit/7548d0290199bdb1053564b953932c53aabdea29))


## v1.3.0 (2023-11-01)

### Chore

* chore(release): bump version to v1.3.0 ([`abe3e2a`](https://github.com/supabase-community/gotrue-py/commit/abe3e2a871d97df4a91f2c4ae3a3c05e56e6e083))

* chore: update CI config with PAT (#361) ([`fbddd6d`](https://github.com/supabase-community/gotrue-py/commit/fbddd6dbbeb67895f6d804f6a9fd804247ccf0c4))

* chore: update CI config with PAT ([`1fffc1f`](https://github.com/supabase-community/gotrue-py/commit/1fffc1fdebca39c35a9e69ea3d25240e13eb73b7))
Expand Down
2 changes: 1 addition & 1 deletion gotrue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

__version__ = "1.3.0"
__version__ = "1.3.1"

from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401
from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gotrue"
version = "1.3.0"
version = "1.3.1"
description = "Python Client Library for GoTrue"
authors = ["Joel Lee <joel@joellee.org>"]
homepage = "https://github.com/supabase-community/gotrue-py"
Expand Down

0 comments on commit ede20fe

Please sign in to comment.