File tree 1 file changed +16
-0
lines changed
src/tools/run-make-support
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).
10
10
This support library will probably never reach 1.0. Please bump the minor version in ` Cargo.toml ` if
11
11
you make any breaking changes or other significant changes, or bump the patch version for bug fixes.
12
12
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
+
13
29
## [ 0.1.0] - 2024-06-09
14
30
15
31
### Changed
You can’t perform that action at this time.
0 commit comments