From 0cf80722fc7fd69c8adf93ce83fa11f68f531b8e Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Thu, 3 Aug 2023 09:17:39 +0200 Subject: [PATCH 1/4] feat: release new version --- gotrue/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gotrue/__init__.py b/gotrue/__init__.py index 4b19e64f..86d1ac3a 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "1.0.2" +__version__ = "1.0.3" 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 1c09f7f2..cb289d9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gotrue" -version = "1.0.2" +version = "1.0.3" description = "Python Client Library for GoTrue" authors = ["Joel Lee "] homepage = "https://github.com/supabase-community/gotrue-py" @@ -30,7 +30,7 @@ pytest-depends = "^1.0.1" pytest-asyncio = "^0.21.1" Faker = "^18.3.1" unasync-cli = "^0.0.9" -python-semantic-release = "^7.34.6" +python-semantic-release = "^8.0.4" [tool.poetry.group.dev.dependencies] pygithub = "^1.57" From aea52c251664ee1496f9af875dc2ab09f823d467 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Thu, 3 Aug 2023 09:25:48 +0200 Subject: [PATCH 2/4] fix: revert semantic release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cb289d9d..88367243 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ pytest-depends = "^1.0.1" pytest-asyncio = "^0.21.1" Faker = "^18.3.1" unasync-cli = "^0.0.9" -python-semantic-release = "^8.0.4" +python-semantic-release = "^7.34.6" [tool.poetry.group.dev.dependencies] pygithub = "^1.57" From cfe3acbba295d30b1360269f891449ca2fe7fa13 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Thu, 3 Aug 2023 09:29:37 +0200 Subject: [PATCH 3/4] chore: bump ci file --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13d375e8..66533213 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,10 @@ name: CI/CD -on: [pull_request, push, workflow_dispatch] +on: push + branches: + - main + pull_request: + - main jobs: test: From baa692c46b2270dfec2697dbe26f58fb016bf593 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Thu, 3 Aug 2023 09:30:58 +0200 Subject: [PATCH 4/4] Revert "chore: bump ci file" This reverts commit cfe3acbba295d30b1360269f891449ca2fe7fa13. --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66533213..13d375e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,6 @@ name: CI/CD -on: push - branches: - - main - pull_request: - - main +on: [pull_request, push, workflow_dispatch] jobs: test: