File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55### Added
66
7+ ## [ 0.2.0] - 2026-02-07
8+
9+ ### Added
10+
711* ` init ` command to set up custom per-project Prep configuration. ([ #23 ] by [ @xStrom ] )
812* ` copyright ` command to easily verify that all Rust source files have correct copyright headers. ([ #22 ] by [ @xStrom ] )
913* ` --crates <main|aux|all> ` option to the ` clippy ` command. ([ #18 ] by [ @xStrom ] )
3236[ #23 ] : https://github.com/Nevermore/prep/pull/23
3337[ #24 ] : https://github.com/Nevermore/prep/pull/24
3438
35- [ Unreleased ] : https://github.com/Nevermore/prep/compare/v0.1.0...HEAD
39+ [ Unreleased ] : https://github.com/Nevermore/prep/compare/v0.2.0...HEAD
40+ [ 0.2.0 ] : https://github.com/Nevermore/prep/compare/v0.1.0...v0.2.0
3641[ 0.1.0 ] : https://github.com/Nevermore/prep/compare/v0.0.0...v0.1.0
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ resolver = "3"
33members = [" prep" ]
44
55[workspace .package ]
6- version = " 0.1 .0"
6+ version = " 0.2 .0"
77
88edition = " 2024"
99rust-version = " 1.93"
@@ -14,10 +14,10 @@ repository = "https://github.com/Nevermore/prep"
1414rust.missing_docs = " warn"
1515
1616[workspace .dependencies ]
17- anyhow = " 1.0.100 "
17+ anyhow = " 1.0.101 "
1818cargo_metadata = " 0.23.1"
19- clap = " 4.5.56 "
19+ clap = " 4.5.57 "
2020regex = " 1.12.3"
2121serde = " 1.0.228"
22- time = " 0.3.46 "
22+ time = " 0.3.47 "
2323toml = " 0.9.11"
Original file line number Diff line number Diff line change 1313Prep is a cross-platform CLI tool that provides Rust workspace verification in a single short command.
1414You can just invoke ` prep ci ` and if the checks succeed then you can rest easy knowing that your PR won't fail CI.
1515
16- The latest version is [ 0.1.0] which was published on 2026-01-31.
17- You can read about the changes in the [ changelog] .
16+ If you're upgrading from an earlier version then you can read about the changes in the [ changelog] .
1817
1918## Motivation
2019
@@ -51,7 +50,9 @@ Usage: prep [command] [options]
5150Commands:
5251 ci Verify for CI.
5352 clp clippy Analyze with Clippy.
53+ copyright Verify copyright headers.
5454 fmt format Format with rustfmt.
55+ init Initialize Prep configuration.
5556 help Print help for the provided command.
5657
5758Options:
@@ -68,5 +69,4 @@ Licensed under either of
6869
6970at your option.
7071
71- [ 0.1.0 ] : https://github.com/Nevermore/prep/releases/tag/v0.1.0
7272[ changelog ] : CHANGELOG.md
You can’t perform that action at this time.
0 commit comments