Release Verification
This checklist verifies a real Rust-only ferrocat release after the publish workflow succeeds.
1. Confirm automation state
- Open the latest
Publishrun and confirm therelease-pleasejob updated or closed the expected release PR cleanly. - For merged release PRs, confirm the same
Publishrun also completed thepublish-rustjob successfully.
2. Confirm workspace versions
- Check crates.io for
ferrocat-icu,ferrocat-po, andferrocat. - Confirm the published crates resolved to the same release version.
- Confirm the workspace-only crates in the repo are also version-aligned with the published crates.
- Confirm internal
ferrocat*path dependencies in the crate manifests were updated to matching versions where applicable. - Confirm the GitHub release tag matches the published version created by Release Please.
3. Confirm install and docs surface
- In a clean scratch project, run
cargo add ferrocat. - Build a tiny smoke example that calls
parse_poandparse_icuthrough the umbrella crate. - Confirm docs.rs builds for
ferrocatand that the README example still matches the published surface. - Confirm the crate READMEs published for
ferrocat,ferrocat-po, andferrocat-icustill describe the current public surface accurately.
4. Confirm repository metadata surface
- Confirm
LICENSE,SECURITY.md, andCODE_OF_CONDUCT.mdare still present and match the current maintenance posture. - Confirm issue templates and the pull request template still reflect the current contributor workflow.
- Confirm README badge links still point at the current crates.io, docs.rs, CI, and coverage surfaces.
5. Record outcome
- If the release is good, record the workflow URL and version in the relevant status or changelog notes.
- If publishing failed partway through, capture the exact crate, version, and workflow URL before retrying so the next release does not repeat the same blind spot.
6. Rollback guidance
- If only the GitHub release failed, fix the workflow cause and rerun from the release commit.
- If
ferrocat-icuorferrocat-popublished butferrocatfailed, do not delete tags. Cut a follow-up release with the fix and let Release Please advance the version. - If a published crate is materially broken, use
cargo yankfor the affected version and note the yank in the release incident log.