Migration to v1.0.1
These are the steps to migrate from v1.0.0 to v1.0.1.
Update AGENTS.md Post-Change Verification Commands
Update the # Post-Change Verification section in your src/AGENTS.md file:
- Added build step: Covers misc targets like fuzzing and benchmarks
- Added
--quietflag: Reduces token usage in LLMs - Replaced footer with header text: Moves instruction to top for better LLM visibility
# Post-Change Verification
+ All must pass without warnings:
+
```bash
+ cargo build --workspace --all-features --all-targets --quiet
- cargo test --workspace --all-features
+ cargo test --workspace --all-features --quiet
- cargo clippy --workspace --all-features -- -D warnings
+ cargo clippy --workspace --all-features --quiet -- -D warnings
- cargo doc --workspace --all-features
+ cargo doc --workspace --all-features --quiet
- cargo fmt --all
+ cargo fmt --all --quiet
- cargo publish --dry-run
+ cargo publish --dry-run --quiet
```
-
- All must pass before submitting.
Update Template Version Marker
Update .github/template-version.txt to reflect the new version:
- reloaded-templates-rust:1.0.0
+ reloaded-templates-rust:1.0.1