From 1c8cd1240c5f7cbcd03f54924c91590fa6f7f2ca Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 9 Feb 2024 04:43:27 +0000 Subject: [PATCH] chore(release): bump version to v2.4.1 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ gotrue/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e515f93..0013ba9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,47 @@ +## v2.4.1 (2024-02-09) + +### Chore + +* chore(deps-dev): bump cryptography from 41.0.6 to 42.0.0 (#416) ([`f03e518`](https://github.com/supabase-community/auth-py/commit/f03e5182a850607000717944bfb390b181294080)) + +* chore(deps-dev): bump cryptography from 41.0.6 to 42.0.0 + +Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.6 to 42.0.0. +- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) +- [Commits](https://github.com/pyca/cryptography/compare/41.0.6...42.0.0) + +--- +updated-dependencies: +- dependency-name: cryptography + dependency-type: indirect +... + +Signed-off-by: dependabot[bot] <support@github.com> ([`7d91ca2`](https://github.com/supabase-community/auth-py/commit/7d91ca2c612a29ccbcfc16d4ff8b030aa5e72d05)) + +### Fix + +* fix: add AuthOtpResponse (#419) ([`130bdb1`](https://github.com/supabase-community/auth-py/commit/130bdb1ba47f8e18800ee052cb1d1e1538482ed4)) + +* fix: move changes to _async ([`7810bbd`](https://github.com/supabase-community/auth-py/commit/7810bbd868f202adf2bef1e0a8573973f8b415be)) + +* fix: add AuthOtpResponse ([`8d64ca4`](https://github.com/supabase-community/auth-py/commit/8d64ca450b37f7063b7fc701ee3156d1677d4fc3)) + +### Unknown + +* formatting ([`97c4713`](https://github.com/supabase-community/auth-py/commit/97c47138215ee04af14478d913300032964f7a8e)) + +* revert changes to parse_auth_response ([`face521`](https://github.com/supabase-community/auth-py/commit/face52175ce75bcb074680c9a464fbb0ee320ae5)) + + ## v2.4.0 (2024-01-31) ### Chore +* chore(release): bump version to v2.4.0 ([`640d0c1`](https://github.com/supabase-community/auth-py/commit/640d0c1cf37edca0b69a189c2b4b637c09b047d0)) + * chore(deps-dev): bump jinja2 from 3.1.2 to 3.1.3 (#403) ([`0d58002`](https://github.com/supabase-community/auth-py/commit/0d580021af269a2e18e4a7864a88462c37334ecd)) * chore(deps-dev): bump jinja2 from 3.1.2 to 3.1.3 diff --git a/gotrue/__init__.py b/gotrue/__init__.py index c0c57d4b..a3167939 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "2.4.0" +__version__ = "2.4.1" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index d72c862e..10367346 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "2.4.0" +version = "2.4.1" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py"