Prepare a lading release. Updates CHANGELOG.md, bumps version in Cargo.toml, updates Cargo.lock, commits, and creates a PR.
80
76%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./.claude/skills/release/SKILL.mdlading/Cargo.toml and CHANGELOG.md to find the current version and unreleased changes.git checkout -b prepare-release-v<version>CHANGELOG.md.## Unreleased header (with empty subsections) above the current unreleased content.## [<version>].## Unreleased and ## [<version>].lading/Cargo.toml to set version = "<new_version>".cargo check to propagate the version change into the lockfile without re-resolving all dependencies.CHANGELOG.md, lading/Cargo.toml, and Cargo.lock.release: v<version>git checkout main && git pullgit tag -a v<version> -m "v<version>"git push origin v<version>git push --tags — always push exactly one tag at a time.release.yml GitHub Actions workflow will automatically create a GitHub Release from the tag, pulling notes from CHANGELOG.md.01ef8d7
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.