From 0056efccd35b824f952b53d6a42a73fffb42553f Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Mon, 3 Apr 2023 23:23:18 +0800 Subject: [PATCH] feat: bump version to 1.0.1 --- gotrue/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gotrue/__init__.py b/gotrue/__init__.py index 8160d737..b354151b 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "1.0.0" +__version__ = "1.0.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 5c451a57..6358d0c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "1.0.0" +version = "1.0.1" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py"