Skip to content
Open
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 .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.2.2"
Comment thread
matt-ryley-Quant marked this conversation as resolved.
}
27 changes: 27 additions & 0 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "rust",
"include-component-in-tag": false,
"changelog-path": "CHANGELOG.md"
}
},
"extra-files": [
{
"type": "generic",
"path": "zixy-py/zixy/__init__.py"
},
{
"type": "generic",
"path": "uv.lock"
},
{
"type": "toml",
"path": "zixy-py/pyproject.toml"
}
],
"plugins": [
"cargo-workspace"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

There are quite a few options here https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md. (include-commit-authors, force-tag-creation) we may want to consider using.

]
}
22 changes: 22 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Please

on:
push:
branches:
Comment thread
matt-ryley-Quant marked this conversation as resolved.
- main
workflow_dispatch: {}

permissions:
contents: write
issues: write
pull-requests: write
Comment thread
matt-ryley-Quant marked this conversation as resolved.

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_ZIXY }}
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

Note: this file is managed by `release-please`.
4 changes: 2 additions & 2 deletions zixy-py/zixy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

__all__ = ["container", "fermion", "qubit"]

# This is updated by our release-please workflow, triggered by this
# annotation: x-release-please-version
# x-release-please-start-version
__version__ = "0.2.2"
# x-release-please-end
Loading