chore: bump to 1.10.0 - #22
Merged
Merged
Conversation
ADR-0016, the root README and xtask's own README all invoke `cargo xtask <cmd>`, but no .cargo/config.toml existed, so the alias resolved to nothing and every documented invocation failed with "no such command". Contributors had to know to run `cargo run -p xtask --` instead.
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.
Why
The per-crate READMEs merged in #21 cannot reach crates.io retroactively — 1.9.0 is published and immutable.
release.ymlgates the crates.io publish on minor/major/initial, so a patch tag would create a GitHub release and publish nothing. This is the minor that carries the docs to the registry.No code change from v1.9.0. Version, dependency pins, README status line, and one build-tooling fix.
Contents
[workspace.package] version→1.10.0, and all 16 internalpxsolver-*pins moved with it — done bycargo xtask bump minor, exercising the re-pin fix from feat(proxy): honour the per-request egress proxy end to end #20 for the first time..cargo/config.tomladded. ADR-0016, the root README andxtask/README.mdall documentcargo xtask <cmd>, but no alias file existed, so every documented invocation failed witherror: no such command: xtask. Contributors had to know to runcargo run -p xtask --instead.After merge
Tag
v1.10.0on the merge commit.release.ymlthen publishes all 16 crates with their READMEs attached, since the tagged commit is onmainand the bump kind isminor.Verification
cargo fmt --check· clippy clean under the unwrap/expect/panic ban · full test suite green · 200-LOC gate green ·cargo xtask bump minor --localran the build+test gate itself before committing.