feat(release): add release-please automation and bump version to 0.1.0#327
Open
tildesrc wants to merge 1 commit into
Open
feat(release): add release-please automation and bump version to 0.1.0#327tildesrc wants to merge 1 commit into
tildesrc wants to merge 1 commit into
Conversation
Wires up release-please to auto-open release PRs on each push to main, and a publish workflow that runs CI then uploads to PyPI on GitHub Release publication via OIDC trusted publishing. Bumps the version to 0.1.0 so the first release ships the post-#261/#262/#263/#267 packaging fixes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
tildesrc
force-pushed
the
panopticon/release-versioning-publish
branch
from
July 15, 2026 15:05
291469f to
a1bc19a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
0.0.1to0.1.0inpyproject.toml,src/panopticon/__init__.py, and.release-please-manifest.jsonsopip install panopticon-appgets the post-feat(migrations): bundle Alembic migrations into the package #261/feat(sessionservice): bundle Docker files in package & fix image builder #262/feat: adopt XDG Base Directory spec for all default data paths #263/feat(terminal): add panopticon build/host/start/stop subcommands #267 packaging fixes# x-release-please-versionmarkers so future version bumps are automated.github/workflows/release-please.yml— watchesmain, auto-opens a release PR on each push using conventional commits, publishes a GitHub Release when that PR merges.github/workflows/release.yml— triggers onrelease: published, runs full CI (typecheck + tests), builds wheel + sdist, uploads to PyPI via OIDC trusted publishingrelease-please-config.jsonand.release-please-manifest.json(release-please config, package namepanopticon-app)docs/releasing.mdwith the full release procedure and one-time setup instructionsBased on #255, with two corrections:
pyproject.tomlusesname = "panopticon-app"(notpanopticon), so therelease-please-config.jsonpackage-nameanddocs/releasing.mdPyPI trusted publisher values are fixed accordingly. Also bumps to0.1.0(PR #255 left everything at0.0.1).One-time setup required after merge (documented in
docs/releasing.md)RELEASE_PLEASE_TOKEN— a fine-grained PAT or GitHub App token with Contents, Issues, and Pull requests write access. The defaultGITHUB_TOKENcannot be used because PRs it opens don't trigger follow-on workflows.pypi(Settings → Environments). Optionally require manual approval as a final gate before each PyPI upload.panopticon-appdoesn't exist on PyPI yet, add a pending trusted publisher from the PyPI account Publishing page — the first successful publish creates the project.After merge
release-please will open a
chore(main): release 0.1.0PR. Merging that PR publishes a GitHub Release, which triggers.github/workflows/release.ymlto uploadpanopticon-app 0.1.0to PyPI.Important: the PyPI publish must complete before running
panopticon buildfor that version, becausepanopticon buildbakespip install panopticon-app==0.1.0into the base container image.