Skip to content

Commit 106b419

Browse files
authored
Prepare to release v0.2.0. (#26)
Time for a new release! 🎉
1 parent aa8ddfd commit 106b419

4 files changed

Lines changed: 22 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
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])
@@ -32,5 +36,6 @@
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

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "3"
33
members = ["prep"]
44

55
[workspace.package]
6-
version = "0.1.0"
6+
version = "0.2.0"
77

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

1616
[workspace.dependencies]
17-
anyhow = "1.0.100"
17+
anyhow = "1.0.101"
1818
cargo_metadata = "0.23.1"
19-
clap = "4.5.56"
19+
clap = "4.5.57"
2020
regex = "1.12.3"
2121
serde = "1.0.228"
22-
time = "0.3.46"
22+
time = "0.3.47"
2323
toml = "0.9.11"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
Prep is a cross-platform CLI tool that provides Rust workspace verification in a single short command.
1414
You 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]
5150
Commands:
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
5758
Options:
@@ -68,5 +69,4 @@ Licensed under either of
6869

6970
at your option.
7071

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

0 commit comments

Comments
 (0)