chore(release): bump workspace version to 0.13.0 - #470
Merged
Conversation
Prepares the v0.13.0 release (bd-5vjlvbg9), per claude-notes/instructions/release-runbook.md step 2. The release workflow's preflight job fails unless the git tag exactly equals `[workspace.package].version`, so the manifest is bumped before v0.13.0 is tagged. `cargo update --workspace` rewrites only the workspace members' own version entries; diffing Cargo.lock for version lines that are neither 0.12.0 nor 0.13.0 returns nothing, so no external dependency moved. `crates/wasm-quarto-hub-client/Cargo.lock` (excluded from the workspace) is refreshed by the same bump — produced by `cargo xtask verify`'s hub-build leg, 17 workspace version lines only, no dependency changes. `cargo build --bin q2 --locked` succeeds and prints "q2 (quarto 2) 0.13.0", so preflight's tag-equals-manifest check will pass for tag v0.13.0. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
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.
Prepares the v0.13.0 release (bd-5vjlvbg9), per
claude-notes/instructions/release-runbook.mdstep 2.The release workflow's preflight job fails unless the git tag exactly
equals
[workspace.package].version, so the manifest is bumped beforev0.13.0is tagged.What's in the release
Scope is
mainas-is — no open PRs pulled in. Commits sincev0.12.0:0e2d8898Don't lex< text(whitespace after<) ashtml_element(bd-ly83qewg, Don't lex '< text' (whitespace after '<') as html_element (bd-ly83qewg) #469)b0f67b43Resolve leading-/include paths against the project root (bd-w9koo1i2, Resolve leading-/ include paths against the project root (bd-w9koo1i2) #468)9e19d757Expand{{< include >}}at every block-list position (bd-1fz3vh99, Expand {{< include >}} at every block-list position (bd-1fz3vh99) #467)c55468e1.mdrender support, Phases 1–6 (bd-6d2wj4zp, .md render support: explicit render-list opt-in, engines ignored with warning (bd-6d2wj4zp) #466) — render-list opt-in discovery, Q-2-40 engine-ignored warning, single-file format detection + self-overwrite guard, nav/body links + dependency-graph edges, preview + hub sync/watch + hub-client surfaces, user docsb3465b7aInclude failures: surface inner parse errors, drop spurious Q-16-3 (bd-qpvoamvu, Include failures: surface inner parse errors, drop spurious Q-16-3 (bd-qpvoamvu) #465)3b3da492chore: refreshwasm-quarto-hub-clientCargo.lock for the 0.12.0 bump9249c43dtemporarily remove issue templateChanges here
Cargo.toml[workspace.package].version0.12.0 → 0.13.0, plus thecargo update --workspacelockfile rewrite. DiffingCargo.lockforversion lines that are neither
0.12.0nor0.13.0returns nothing, sono external dependency moved — only workspace members.
crates/wasm-quarto-hub-client/Cargo.lock(excluded from the workspace,so
cargo update --workspacedoesn't reach it) is refreshed by the samebump: 17 workspace version lines, no dependency changes. It was produced
by
cargo xtask verify's hub-build leg, same as3b3da492did for 0.12.0.Verification
cargo build --bin q2 --lockedsucceeds and printsq2 (quarto 2) 0.13.0.The
--lockedbuild is the real gate: CI builds--locked, so thelockfile had to already be in sync.
cargo xtask verify(not--skip-hub-build) — all 14 stepsgreen: custom lints, clippy
-D warnings, rustfmt,cargo build --workspace,cargo nextest run --workspace, ts-packages build + MCPsmoke check, hub-client
build:all(including WASM), hub-clienttest:ci, and the q2-preview-spa bundle.🤖 Generated with Claude Code