From 3cb5a7332737611cde29ba221f07e5b4b9c97b6c Mon Sep 17 00:00:00 2001 From: Ty Schlichenmeyer Date: Wed, 28 Feb 2024 02:52:01 -0600 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=B7=20(ci):=20remove=20redundant?= =?UTF-8?q?=20tag/branch=20check=20in=20release=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2397316..3e685eda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,6 @@ jobs: python setup.py sdist --format=gztar bdist_wheel twine check dist/* - name: Upload packages to Jazzband - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: user: jazzband From 50bf7eecfad9b60ee02a80b7e273d0ca22e57d9e Mon Sep 17 00:00:00 2001 From: Ty Schlichenmeyer Date: Wed, 28 Feb 2024 02:52:23 -0600 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F:=20bump=20to=20rc3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wagtailmenus/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtailmenus/__init__.py b/wagtailmenus/__init__.py index 42448e38..394f3ca4 100644 --- a/wagtailmenus/__init__.py +++ b/wagtailmenus/__init__.py @@ -2,7 +2,7 @@ # major.minor.patch.release.number # release must be one of alpha, beta, rc, or final -VERSION = (4, 0, 0, "rc", 2) +VERSION = (4, 0, 0, "rc", 3) __version__ = get_version(VERSION) stable_branch_name = get_stable_branch_name(VERSION)