diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed320221..ddfb5d57 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.12.1" + ".": "2.12.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f723c16..30ab5715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## [2.12.2](https://github.com/supabase/auth-py/compare/v2.12.1...v2.12.2) (2025-06-23) + + +### Bug Fixes + +* add py.typed marker for type-checking support ([#721](https://github.com/supabase/auth-py/issues/721)) ([59fddd4](https://github.com/supabase/auth-py/commit/59fddd4faffca19f9f9d5523b72179ee32c90aa6)) +* remove unused jwt key validation ([#725](https://github.com/supabase/auth-py/issues/725)) ([13008b3](https://github.com/supabase/auth-py/commit/13008b3977b1e9ad688c4c8b7f0f6b79523ebca3)) +* sms mfa failure due to missing totp field ([#723](https://github.com/supabase/auth-py/issues/723)) ([8b81588](https://github.com/supabase/auth-py/commit/8b81588638f3cb4c972ba386ddf8d46c38ff712b)) + ## [2.12.1](https://github.com/supabase/auth-py/compare/v2.12.0...v2.12.1) (2025-05-15) diff --git a/pyproject.toml b/pyproject.toml index 6354b2a6..86ebf069 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_auth" -version = "2.12.1" # {x-release-please-version} +version = "2.12.2" # {x-release-please-version} description = "Python Client Library for Supabase Auth" authors = ["Joel Lee "] homepage = "https://github.com/supabase/auth-py" diff --git a/supabase_auth/version.py b/supabase_auth/version.py index 220e6ec6..c3d50ab7 100644 --- a/supabase_auth/version.py +++ b/supabase_auth/version.py @@ -1 +1 @@ -__version__ = "2.12.1" # {x-release-please-version} +__version__ = "2.12.2" # {x-release-please-version}