Skip to content

Commit b927df2

Browse files
semarjclaude
andcommitted
fix: add release-please v4 configuration files
Add required configuration for release-please v4: - .release-please-manifest.json: Tracks current version (1.0.0) - release-please-config.json: Configures release strategy for Python package Without these files, release-please v4 cannot properly detect and bump versions for breaking changes. This will allow the breaking change in commit 7559751 to properly trigger a major version bump to 2.0.0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent bc0d843 commit b927df2

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.0.0"
3+
}

release-please-config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "python",
5+
"package-name": "shipengine",
6+
"changelog-path": "CHANGELOG.md",
7+
"bump-minor-pre-major": false,
8+
"bump-patch-for-minor-pre-major": false
9+
}
10+
}
11+
}

0 commit comments

Comments
 (0)