Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.1.0"

Copilot AI Mar 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The manifest version should match the latest already-released version/tag for the repo. README currently links to a v0.0.1 release, but the manifest is initialized to 0.1.0, which will cause release-please to compute subsequent versions from the wrong baseline (e.g., start bumping from 0.1.0 even if 0.0.1 is the current release). Consider setting this to the current released version, or updating existing release/tag references if 0.1.0 is intended to be the baseline.

Copilot uses AI. Check for mistakes.
}
Comment on lines +1 to +3

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

It's beneficial to include the $schema for this manifest file. It helps with validation and editor tooling. Additionally, it's a common convention to end files with a newline character.

Suggested change
{
".": "0.1.0"
}
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/manifest.json",
".": "0.1.0"
}

9 changes: 9 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true
}
}
}
Comment on lines +1 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability and provide editor support (like auto-completion and validation), it's a good practice to add a $schema key to your release-please-config.json file. This helps prevent typos and ensures the configuration is valid.

Suggested change
{
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true
}
}
}
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true
}
}
}