Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 2.18 KB

File metadata and controls

54 lines (38 loc) · 2.18 KB

Changelog

Added

  • tools command for tool management. (#27 by @xStrom)
  • Automatic installation of tools from source via cargo. Now implemented for ripgrep. (#28 by @xStrom)
  • Automatic Rustfmt and Clippy installation via rustup. (#29 by @xStrom)
  • --strict option to clippy, copyright, and format commands to use locked tool versions. (#27 by @xStrom)

Changed

  • ci command now also runs the copyright command. (#28 by @xStrom)

0.2.0 - 2026-02-07

Added

  • init command to set up custom per-project Prep configuration. (#23 by @xStrom)
  • copyright command to easily verify that all Rust source files have correct copyright headers. (#22 by @xStrom)
  • --crates <main|aux|all> option to the clippy command. (#18 by @xStrom)
  • Automatic Cargo installation via rustup. (#24 by @xStrom)
  • Ability to run from within a sub-directory of a workspace as opposed to just from the workspace root. (#23 by @xStrom)

Changed

  • ci clippy now uses --crates all by default and does two separate checks with --crates main and --crates aux in extended mode. (#18 by @xStrom)

0.1.0 - 2026-01-31

Added

  • clippy command to easily run cargo clippy --workspace --all-features --locked. (#2 by @xStrom)
  • format command to easily run cargo fmt --all. (#3 by @xStrom)
  • ci command to easily run format and clippy in strict verification mode. (#5 by @xStrom)