From 6d27544667522cf7c4357340abef3121d0007d9e Mon Sep 17 00:00:00 2001 From: Joshua Semar Date: Tue, 16 Dec 2025 12:59:34 -0600 Subject: [PATCH] fix: update release-please manifest to current version 1.0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The manifest was set to 1.0.0 but the actual codebase is at 1.0.2 (per pyproject.toml and CHANGELOG.md). This caused release-please to look at all commits since 1.0.0 and bump to 1.0.1 instead of properly detecting the breaking change (commit 7559751) that should bump to 2.0.0. By setting the manifest to 1.0.2, release-please will only consider commits after that version, properly detecting the breaking change and bumping to 2.0.0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .release-please-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..b870c5e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.2" }