Skip to content

Commit

Permalink
run-make-support: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jieyouxu committed Jun 11, 2024
1 parent f6ab5e9 commit 5b126ed
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/tools/run-make-support/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ changes to the support library).
This support library will probably never reach 1.0. Please bump the minor version in `Cargo.toml` if
you make any breaking changes or other significant changes, or bump the patch version for bug fixes.

## [0.2.0] - 2024-06-11

### Added

- Added `fs_wrapper` module which provides panic-on-fail helpers for their respective `std::fs`
counterparts, the motivation is to:
- Reduce littering `.unwrap()` or `.expect()` everywhere for fs operations
- Help the test writer avoid forgetting to check fs results (even though enforced by
`-Dunused_must_use`)
- Provide better panic messages by default
- Added `path()` helper which creates a `Path` relative to `cwd()` (but is less noisy).

### Changed

- Marked many functions with `#[must_use]`, and rmake.rs are now compiled with `-Dunused_must_use`.

## [0.1.0] - 2024-06-09

### Changed
Expand Down

0 comments on commit 5b126ed

Please sign in to comment.