Skip to content

Commit

Permalink
ci: Use release-please bootstrap's default config (#187)
Browse files Browse the repository at this point in the history
Autogenerated the config file and manifest using the cli tool.
I think the main problem was that release-please was not finding the
0.1.0 release (hence the 0.0.0 tag in the manifest).

Adding this tag here should make it pick the correct version for the
next release:

Release-As: 0.2.0
  • Loading branch information
aborgna-q authored Apr 10, 2024
1 parent 77ccae4 commit 72e666a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
}
".": "0.0.0"
}
18 changes: 12 additions & 6 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": false,
"packages": ".",
"release-type": "python",
"bump-minor-pre-major": true
}
"packages": {
".": {
"release-type": "python",
"changelog-path": "CHANGELOG.md",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 72e666a

Please sign in to comment.