From b1e5418122c1c430da79468d0fe3098d54aea8f9 Mon Sep 17 00:00:00 2001 From: Tyler Riccio Date: Fri, 3 Jul 2026 10:50:20 -0400 Subject: [PATCH] chore: reconcile testmap release state with published 0.4.0 testmap 0.4.0 was published to PyPI out-of-band (2026-07-03), bypassing release-please. The published wheel is byte-identical to HEAD, including the [tool.testmap.generate] feature (#17), but the repo's release bookkeeping still said 0.3.0. This left the manifest one release behind, so release-please would try to re-cut 0.4.0 and collide with the existing PyPI version. Bring the repo in line with what's already published: - pyproject.toml -> 0.4.0 - .release-please-manifest.json packages/testmap -> 0.4.0 - CHANGELOG.md: add 0.4.0 entry for the generate feature Tag testmap-v0.4.0 is created separately on e452684 (the commit matching the published wheel). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_014GcFNWdzHvsbqU72LZUqo5 --- .release-please-manifest.json | 2 +- packages/testmap/CHANGELOG.md | 7 +++++++ packages/testmap/pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d13ad7e..cf81265 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/testmap": "0.3.0", + "packages/testmap": "0.4.0", "packages/pytest-testmap": "0.3.0" } diff --git a/packages/testmap/CHANGELOG.md b/packages/testmap/CHANGELOG.md index 74ccfe6..a93d113 100644 --- a/packages/testmap/CHANGELOG.md +++ b/packages/testmap/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.0](https://github.com/tylerriccio33/testmap/compare/testmap-v0.3.0...testmap-v0.4.0) (2026-07-03) + + +### Features + +* generate features from source via [tool.testmap.generate] ([#17](https://github.com/tylerriccio33/testmap/issues/17)) ([e452684](https://github.com/tylerriccio33/testmap/commit/e452684)) + ## [0.3.0](https://github.com/tylerriccio33/testmap/compare/testmap-v0.2.0...testmap-v0.3.0) (2026-07-03) diff --git a/packages/testmap/pyproject.toml b/packages/testmap/pyproject.toml index d7450ee..77863cc 100644 --- a/packages/testmap/pyproject.toml +++ b/packages/testmap/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "testmap" -version = "0.3.0" +version = "0.4.0" description = "Understand your test suite: a feature x test-kind validation matrix." readme = "README.md" authors = [{ name = "Tyler Riccio", email = "tylerriccio8@gmail.com" }]