From 1a55ab3828991e1e232be5b12b673dbb89f9525d Mon Sep 17 00:00:00 2001 From: Ty Schlichenmeyer Date: Wed, 28 Feb 2024 11:02:25 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v4.0.0rc3=20(#486)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 👷 (ci): remove redundant tag/branch check in release workflow * 🏷️: bump to rc3 --- .github/workflows/release.yml | 1 - wagtailmenus/__init__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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 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)