diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d797b5c..58915686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.5.4 (2022-08-31) +### Fix +* Use `str` type instead of `UUID` type in `id` property of `Identity` model ([#156](https://github.com/supabase-community/gotrue-py/pull/156)) thanks to [@leynier](https://github.com/leynier) + ## v0.5.3 (2022-07-16) ### Fix * Set total false to user attributes typed dict diff --git a/gotrue/__init__.py b/gotrue/__init__.py index 75719d27..6db087d8 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.5.3" +__version__ = "0.5.4" from ._async.api import AsyncGoTrueAPI from ._async.client import AsyncGoTrueClient diff --git a/pyproject.toml b/pyproject.toml index 60edc867..bc6141e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "0.5.3" +version = "0.5.4" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py"