From b194f07c5cbe5e7b813e968a928e99cc5c6070e0 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sun, 23 Jun 2024 20:39:26 +0000 Subject: [PATCH] chore(release): bump version to v2.5.3 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- supabase_auth/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab16f771..d017a693 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,21 @@ # CHANGELOG +## v2.5.3 (2024-06-23) + +### Fix + +* fix: update property name for should_create_user (#531) ([`388fcba`](https://github.com/supabase-community/auth-py/commit/388fcbac63bc96119c3c3ece91f28578e384a38b)) + +### Unknown + +* update peoperty name for should_create_user ([`4bc09ef`](https://github.com/supabase-community/auth-py/commit/4bc09ef2f61ec55e01485dfa606a9d6631e607a5)) + ## v2.5.2 (2024-06-21) ### Chore +* chore(release): bump version to v2.5.2 ([`00a04c6`](https://github.com/supabase-community/auth-py/commit/00a04c6637ccd2fb84700cea13dd4aaf705cc443)) + * chore(deps-dev): bump faker from 25.8.0 to 25.9.1 (#529) ([`c530238`](https://github.com/supabase-community/auth-py/commit/c530238b2574921545980fc0bf170b21b6bef20c)) * chore(deps-dev): bump faker from 25.8.0 to 25.9.1 diff --git a/pyproject.toml b/pyproject.toml index dd2e3a8d..830e0d93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_auth" -version = "2.5.2" +version = "2.5.3" 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 a03a7d9d..b893a30e 100644 --- a/supabase_auth/__init__.py +++ b/supabase_auth/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "2.5.2" +__version__ = "2.5.3" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401