From 4b5ce2f583ca84a972445a7cd08ffd44bbbb03c9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 13 Jan 2022 23:07:15 +0000 Subject: [PATCH] chore(release): bump version to v0.3.4 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ gotrue/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c3db41..deb4ea46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.3.4 (2022-01-13) +### Fix +* String formatting in `delete_user` ([#64](https://github.com/supabase-community/gotrue-py/issues/64)) ([`d783015`](https://github.com/supabase-community/gotrue-py/commit/d783015b5d2472fe95a83f5d42efe97f79331516)) + +**[See all commits in this version](https://github.com/supabase-community/gotrue-py/compare/v0.3.3...v0.3.4)** + ## v0.3.3 (2022-01-08) **[See all commits in this version](https://github.com/supabase-community/gotrue-py/compare/v0.3.2...v0.3.3)** diff --git a/gotrue/__init__.py b/gotrue/__init__.py index 04983628..9a9f5d93 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.3.3" +__version__ = "0.3.4" from ._async.api import AsyncGoTrueAPI from ._async.client import AsyncGoTrueClient diff --git a/pyproject.toml b/pyproject.toml index 1103d261..686849a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "0.3.3" +version = "0.3.4" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py"