From ac012cda87d33f44fcc648fca0e166693f890ad3 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Sun, 5 Feb 2023 21:51:00 +0800 Subject: [PATCH] feat: bump to 1.0.0 --- 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 f478859f..8160d737 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.5.4" +__version__ = "1.0.0" 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 9bd523e1..ce9144ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "0.5.4" +version = "1.0.0" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py"