From 3654f6f2e0d520127dec3ea2cc2cbe17e35fd96c Mon Sep 17 00:00:00 2001 From: Cary Hawkins Date: Thu, 19 Feb 2026 10:55:07 -0800 Subject: [PATCH 1/2] Fix: Use prerelease as a part of new immutable releases process --- scripts/release_github.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release_github.py b/scripts/release_github.py index 3b26a4db3..ddf48bfce 100644 --- a/scripts/release_github.py +++ b/scripts/release_github.py @@ -16,6 +16,7 @@ def main(): "title": f"{args.project.capitalize()} v{version}", "tag": f"{args.project}-v{version}", "body": notes, + "prerelease": "1", }) url = f"https://github.com/pypa/hatch/releases/new?{params}" From 3969a718fd4c2326cd726d296558dc39d4ad528a Mon Sep 17 00:00:00 2001 From: Cary Hawkins Date: Thu, 19 Feb 2026 10:55:07 -0800 Subject: [PATCH 2/2] Fix: Use prerelease as a part of new immutable releases process --- scripts/release_github.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release_github.py b/scripts/release_github.py index 3b26a4db3..b22065dcc 100644 --- a/scripts/release_github.py +++ b/scripts/release_github.py @@ -16,6 +16,7 @@ def main(): "title": f"{args.project.capitalize()} v{version}", "tag": f"{args.project}-v{version}", "body": notes, + "prerelease": "true", }) url = f"https://github.com/pypa/hatch/releases/new?{params}"