diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6a3916..9ae3b619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # CHANGELOG +## v2.6.0 (2024-07-17) + +### Feature + +* feat: add sign_in_with_id_token method (#548) ([`b7e2c2c`](https://github.com/supabase-community/auth-py/commit/b7e2c2c2b9dd949aa0931c3b90ed66b5de46825e)) + ## v2.5.5 (2024-07-14) ### Chore +* chore(release): bump version to v2.5.5 ([`79a24f0`](https://github.com/supabase-community/auth-py/commit/79a24f0d52b07693102812fa0934ae03b9bed898)) + * chore(deps-dev): bump zipp from 3.18.1 to 3.19.1 (#546) ([`1c807cb`](https://github.com/supabase-community/auth-py/commit/1c807cb21ebc88cb95c98c8c12ca9b4e71c6da9d)) * chore(deps-dev): bump zipp from 3.18.1 to 3.19.1 diff --git a/pyproject.toml b/pyproject.toml index a5f2d0c5..6201538e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_auth" -version = "2.5.5" +version = "2.6.0" 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 4db99e55..18fd82b2 100644 --- a/supabase_auth/__init__.py +++ b/supabase_auth/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "2.5.5" +__version__ = "2.6.0" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401