File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
src/tools/run-make-support Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,22 @@ changes to the support library).
1010This support library will probably never reach 1.0. Please bump the minor version in ` Cargo.toml ` if
1111you 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
You can’t perform that action at this time.
0 commit comments