diff --git a/CHANGELOG.md b/CHANGELOG.md index d017a693..e1ca0be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,25 @@ # CHANGELOG +## v2.5.4 (2024-06-23) + +### Fix + +* fix: add await to async call for anonymous sign in request (#532) ([`45cfe25`](https://github.com/supabase-community/auth-py/commit/45cfe25f10cb63134cd297b34bae419687cb64b6)) + +### Unknown + +* add missing await ([`412449a`](https://github.com/supabase-community/auth-py/commit/412449ac83d72ad05415cbfb63f91821555ed997)) + +* add await ([`5520ad8`](https://github.com/supabase-community/auth-py/commit/5520ad839ea8071801e00e5c10294958b31dd3e4)) + +* add await to async call for anonymous sign in request ([`4734d0d`](https://github.com/supabase-community/auth-py/commit/4734d0df974d2a24a8cd9f468584343d5f7ea9c3)) + ## v2.5.3 (2024-06-23) +### Chore + +* chore(release): bump version to v2.5.3 ([`b194f07`](https://github.com/supabase-community/auth-py/commit/b194f07c5cbe5e7b813e968a928e99cc5c6070e0)) + ### Fix * fix: update property name for should_create_user (#531) ([`388fcba`](https://github.com/supabase-community/auth-py/commit/388fcbac63bc96119c3c3ece91f28578e384a38b)) diff --git a/pyproject.toml b/pyproject.toml index 830e0d93..533ddd17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_auth" -version = "2.5.3" +version = "2.5.4" description = "Python Client Library for Supabase Auth" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/auth-py" diff --git a/supabase_auth/__init__.py b/supabase_auth/__init__.py index b893a30e..5eb5ccf7 100644 --- a/supabase_auth/__init__.py +++ b/supabase_auth/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "2.5.3" +__version__ = "2.5.4" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401