release: 0.5.0 - #106
Merged
Merged
Conversation
Freezes the Unreleased block as 0.5.0 and drops the .dev0 suffix main carries between releases (release.yml compares the tag to pyproject.toml exactly, so v0.5.0 against 0.5.0.dev0 fails the build after the whole matrix has run). Headline is `plate tui`, the optional full-screen terminal UI, plus the deep-audit fix wave — MQTT print-path integrity, config/secrets hardening, the download/slice/ job pipeline, and the CLI JSON contract — and the B.4 refactor that stopped domain modules importing private helpers from the CLI entrypoint. uv.lock carries the project version too, as it did for the 0.5.0.dev0 bump (#87).
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.
Cuts 0.5.0. Version bump plus the changelog freeze — nothing else.
What ships
plate tui— the optional full-screen terminal UI (pip install 'platecli[tui]'): live dashboard, guided prepare screen with AMS-detected material and advanced slice settings, an explicit print-confirmation dialog, and a live job monitor. It is a front-end over the same shared pipelineplate goruns, so the two cannot drift, and a print still starts only from the confirm dialog.Also in this release: the deep-audit fix wave (MQTT print-path integrity — no false
Print startedon a refused CONNACK, no reconnect re-publishing a print command; config/secrets hardening; download/slice/job pipeline correctness; the CLI JSON contract), the B.4 refactor that stopped domain modules importing private_underscorehelpers fromcli.py, generated schemas, and the test decomposition.Mechanics
pyproject.toml0.5.0.dev0→0.5.0. The.devNmust be dropped:release.yml:46-53compares the tag to the version exactly, sov0.5.0against0.5.0.dev0fails late, after the full matrix has run.uv.lockcarries the project version too and is bumped with it, as it was for the0.5.0.dev0bump in chore: carry 0.5.0.dev0 on main between releases #87.[Unreleased]frozen as## [0.5.0] - 2026-08-05, empty[Unreleased]retained, diff-link refs updated — same shape as the 0.4.0 release commit (7598dde).After this merges: tag
v0.5.0, which triggersrelease.yml(full CI matrix → build → PyPI via trusted publishing → GitHub Release). Then a follow-up PR bumps main to0.6.0.dev0, so a source checkout never reports a released version while running unreleased code.Verified locally on this branch
Wheel metadata reads
Version: 0.5.0withProvides-Extra: tui, and ships all 19bambu_cli/tui/files includingstyles.tcssand the newwidgets/summary.py.Not verified locally: the Windows/macOS legs and pip-audit (CI only), and the post-publish
pip installcheck, which happens after the tag.