Skip to content

Commit

Permalink
chore: Add a Release Please manifest.
Browse files Browse the repository at this point in the history
Release please seems to be starting at version 0.1.0 while we've already manually released 0.3.0.

I **think** checking in the .release-please-manifest.json with the version set should fix that.

The `.json` files in this change were created by running:

```
release-please bootstrap --release-type=python --initial-version=0.3.0 --bump-minor-pre-major --repo-url=amirh/python-genai
```

PiperOrigin-RevId: 709117873
  • Loading branch information
amirh authored and copybara-github committed Dec 23, 2024
1 parent 5586f3d commit 84b70bf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/release-please.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
releaseType: python
handleGHRelease: true
bumpMinorPreMajor: true
manifest: true
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.3.0"
}
13 changes: 13 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "python",
"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 84b70bf

Please sign in to comment.