From d559e2dedfbadde1e604087d8677cdb8aa63d7d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leynier=20Guti=C3=A9rrez=20Gonz=C3=A1lez?= Date: Wed, 31 Aug 2022 04:33:05 -0400 Subject: [PATCH] chore: setup version 0.5.4 for new release (#157) * chore: setup version 0.5.4 for new release * chore: update version of __init__.py * chore: update changelog --- CHANGELOG.md | 4 ++++ gotrue/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"