Skip to content

Commit 5b126ed

Browse files
committed
run-make-support: update changelog
1 parent f6ab5e9 commit 5b126ed

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/tools/run-make-support/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ changes to the support library).
1010
This support library will probably never reach 1.0. Please bump the minor version in `Cargo.toml` if
1111
you make any breaking changes or other significant changes, or bump the patch version for bug fixes.
1212

13+
## [0.2.0] - 2024-06-11
14+
15+
### Added
16+
17+
- Added `fs_wrapper` module which provides panic-on-fail helpers for their respective `std::fs`
18+
counterparts, the motivation is to:
19+
- Reduce littering `.unwrap()` or `.expect()` everywhere for fs operations
20+
- Help the test writer avoid forgetting to check fs results (even though enforced by
21+
`-Dunused_must_use`)
22+
- Provide better panic messages by default
23+
- Added `path()` helper which creates a `Path` relative to `cwd()` (but is less noisy).
24+
25+
### Changed
26+
27+
- Marked many functions with `#[must_use]`, and rmake.rs are now compiled with `-Dunused_must_use`.
28+
1329
## [0.1.0] - 2024-06-09
1430

1531
### Changed

0 commit comments

Comments
 (0)