From 4b5aa15996797ee908b5ab652757dbeca37a9aad Mon Sep 17 00:00:00 2001 From: semantic-release Date: Wed, 24 Jul 2024 23:11:19 +0000 Subject: [PATCH] chore(release): bump version to v2.6.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- supabase_auth/__init__.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae3b619..64500757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,27 @@ # CHANGELOG +## v2.6.1 (2024-07-24) + +### Chore + +* chore(deps-dev): bump pytest from 8.2.2 to 8.3.1 (#551) ([`964826c`](https://github.com/supabase-community/auth-py/commit/964826c2ae6baf823d491c38b30cba6392b4aa77)) + +* chore(deps): bump python-semantic-release/python-semantic-release from 9.8.5 to 9.8.6 (#552) ([`fd92320`](https://github.com/supabase-community/auth-py/commit/fd923204c5da0cae480636ac12d3286e292f88ee)) + +* chore(deps-dev): bump python-semantic-release from 9.8.5 to 9.8.6 (#550) ([`625f4af`](https://github.com/supabase-community/auth-py/commit/625f4af3b773f242483e4ba10f67e7e0452c28cc)) + +* chore(deps-dev): bump pytest-asyncio from 0.23.7 to 0.23.8 (#549) ([`0a7a766`](https://github.com/supabase-community/auth-py/commit/0a7a76691e4597a9417afcbc016d24642329bcc9)) + +### Fix + +* fix: add is_anonymous type to the user model (#553) ([`c37913f`](https://github.com/supabase-community/auth-py/commit/c37913f013be27231bb3347d29334d6af8024eb3)) + ## v2.6.0 (2024-07-17) +### Chore + +* chore(release): bump version to v2.6.0 ([`0899975`](https://github.com/supabase-community/auth-py/commit/0899975e9d964ba3ab525bca89fa487ca99b90d5)) + ### Feature * feat: add sign_in_with_id_token method (#548) ([`b7e2c2c`](https://github.com/supabase-community/auth-py/commit/b7e2c2c2b9dd949aa0931c3b90ed66b5de46825e)) diff --git a/pyproject.toml b/pyproject.toml index bda08d2e..16da839d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_auth" -version = "2.6.0" +version = "2.6.1" 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 18fd82b2..fe1e3aec 100644 --- a/supabase_auth/__init__.py +++ b/supabase_auth/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "2.6.0" +__version__ = "2.6.1" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401