Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Added

## [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])
Expand Down Expand Up @@ -32,5 +36,6 @@
[#23]: https://github.com/Nevermore/prep/pull/23
[#24]: https://github.com/Nevermore/prep/pull/24

[Unreleased]: https://github.com/Nevermore/prep/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/Nevermore/prep/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/Nevermore/prep/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/Nevermore/prep/compare/v0.0.0...v0.1.0
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "3"
members = ["prep"]

[workspace.package]
version = "0.1.0"
version = "0.2.0"

edition = "2024"
rust-version = "1.93"
Expand All @@ -14,10 +14,10 @@ repository = "https://github.com/Nevermore/prep"
rust.missing_docs = "warn"

[workspace.dependencies]
anyhow = "1.0.100"
anyhow = "1.0.101"
cargo_metadata = "0.23.1"
clap = "4.5.56"
clap = "4.5.57"
regex = "1.12.3"
serde = "1.0.228"
time = "0.3.46"
time = "0.3.47"
toml = "0.9.11"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
Prep is a cross-platform CLI tool that provides Rust workspace verification in a single short command.
You can just invoke `prep ci` and if the checks succeed then you can rest easy knowing that your PR won't fail CI.

The latest version is [0.1.0] which was published on 2026-01-31.
You can read about the changes in the [changelog].
If you're upgrading from an earlier version then you can read about the changes in the [changelog].

## Motivation

Expand Down Expand Up @@ -51,7 +50,9 @@ Usage: prep [command] [options]
Commands:
ci Verify for CI.
clp clippy Analyze with Clippy.
copyright Verify copyright headers.
fmt format Format with rustfmt.
init Initialize Prep configuration.
help Print help for the provided command.

Options:
Expand All @@ -68,5 +69,4 @@ Licensed under either of

at your option.

[0.1.0]: https://github.com/Nevermore/prep/releases/tag/v0.1.0
[changelog]: CHANGELOG.md