Skip to content

Commit

Permalink
Bump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Aug 13, 2022
1 parent 13c1e19 commit 05346b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.5.1] - 2022-08-13
### Added
- `Trial::{name, kind, has_ignored_flag, is_test, is_bench}` getters

## [0.5.0] - 2022-08-13

Most parts of this library have been rewritten and the API has changed a lot.
You might be better of just reading the new docs instead of this change log.
I do think the new API is better in many regards.
Apart from an improved API, changes that motivated the rewrite are marked with ⭐.

## Changed
### Changed
- **Breaking**: bump MSRV to 1.58
- **Breaking**: Rename `Test` to `Trial`
- **Breaking**: Rename `run_tests` to `run`
Expand All @@ -31,15 +35,15 @@ Apart from an improved API, changes that motivated the rewrite are marked with
- Fix `--ignored` behavior
- Fix some CLI error messages

## Added
### Added
- ⭐Panics in test runners are caught and treated as failure
- ⭐ Lots of integration tests (should make any future development of this library way easier)
- Add `must_use` message for `Conclusion`
- Print total execution time at the end of the run
- Allow benchmarks to run in test mode
- `--include-ignored`

## Removed
### Removed
- **Breaking**: remove unsupported CLI options. They were ignored anyway, but
the CLI would accept them.

Expand Down Expand Up @@ -72,7 +76,8 @@ Apart from an improved API, changes that motivated the rewrite are marked with
- Everything.


[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.3.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libtest-mimic"
version = "0.5.0"
version = "0.5.1"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2021"
rust-version = "1.58"
Expand Down

0 comments on commit 05346b3

Please sign in to comment.