From 237353c5342c1217b9f84c8cf70fbe108e132eca Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Tue, 16 Dec 2025 21:22:13 -0600 Subject: [PATCH] Update version_branch.yml --- .github/workflows/version_branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_branch.yml b/.github/workflows/version_branch.yml index 82b994e..10e0fd6 100644 --- a/.github/workflows/version_branch.yml +++ b/.github/workflows/version_branch.yml @@ -195,7 +195,7 @@ jobs: print('[INFO] Replaced UNRELEASED H2 with version heading') # After converting UNRELEASED to a release, insert a new UNRELEASED section right after TODO block - insert_unreleased = chr(10) + "## [UNRELEASED]" + chr(10) + "- Placeholder for next release" + chr(10) + insert_unreleased = chr(10) + "## [UNRELEASED]" + chr(10) + "- Placeholder for next release" + chr(10) + chr(10) text.insert(j, insert_unreleased) p.write_text(''.join(text), encoding='utf-8') raise SystemExit(0)