Skip to content

Commit

Permalink
chore(release): bump version to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 30, 2023
1 parent c294568 commit 1440dd6
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,49 @@



## v2.0.0 (2023-11-30)

### Breaking

* feat: exchange code for session now fully async

BREAKING CHANGE: change async method on_auth_state_change to sync only. ([`a249ba0`](https://github.com/supabase-community/gotrue-py/commit/a249ba03cc7d99b2d1805480ca89ee457ad865f1))

### Chore

* chore(deps-dev): bump cryptography from 41.0.5 to 41.0.6 (#377) ([`e6b3d46`](https://github.com/supabase-community/gotrue-py/commit/e6b3d46fba5f24631fdd5fdb1b8d1688a1087053))

### Feature

* feat: exchange code for session now fully async (#378) ([`c294568`](https://github.com/supabase-community/gotrue-py/commit/c2945684a8ad4d8710ca72428b4ec16aab87bad1))

### Unknown

* bug fix: use pydantic v2 model.model_rebuild (#373) ([`fd94314`](https://github.com/supabase-community/gotrue-py/commit/fd94314c4412d49610acf8d3166abe660f6a4ee4))

* add soft delete support to "delete user" (#376) ([`08bada3`](https://github.com/supabase-community/gotrue-py/commit/08bada3692f230cf1bd793a7eb60a12d62fec0c6))


## v1.3.1 (2023-11-29)

### Chore

* chore(release): bump version to v1.3.1 ([`ede20fe`](https://github.com/supabase-community/gotrue-py/commit/ede20fea097fd900df2efc6231c14ea86f486087))

* chore(deps-dev): bump cryptography from 41.0.5 to 41.0.6

Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.5 to 41.0.6.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/41.0.5...41.0.6)

---
updated-dependencies:
- dependency-name: cryptography
dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com> ([`424a5df`](https://github.com/supabase-community/gotrue-py/commit/424a5df56f91ac30fab056bd9128d4dac004c565))

### Fix

* fix: remove unnecessary async to on_auth_state_change (#374) ([`574c739`](https://github.com/supabase-community/gotrue-py/commit/574c739500dd304aa6d09c69122373b6e4a5be01))
Expand All @@ -15,6 +56,12 @@ Somehow this got reverted on a refactor (https://github.com/supabase-community/g
This causes problems when using the supabase client, since it's not being awaited:
https://github.com/supabase-community/supabase-py/blob/main/supabase/_async/client.py#L90 ([`7548d02`](https://github.com/supabase-community/gotrue-py/commit/7548d0290199bdb1053564b953932c53aabdea29))

### Unknown

* add soft delete support to "delete user" ([`5471167`](https://github.com/supabase-community/gotrue-py/commit/54711675533ce58fdf3017f250e92a88db719aad))

* bug fix: use pydantic v2 model.model_rebuild not rebuild_model ([`9d723df`](https://github.com/supabase-community/gotrue-py/commit/9d723df7637fb501f83aad3562a49e2ed24bb9a2))


## v1.3.0 (2023-11-01)

Expand Down
2 changes: 1 addition & 1 deletion gotrue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

__version__ = "1.3.1"
__version__ = "2.0.0"

from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401
from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gotrue"
version = "1.3.1"
version = "2.0.0"
description = "Python Client Library for GoTrue"
authors = ["Joel Lee <joel@joellee.org>"]
homepage = "https://github.com/supabase-community/gotrue-py"
Expand Down

0 comments on commit 1440dd6

Please sign in to comment.