From d68ce73c7066a769e303b589cf79676c33c09495 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Sun, 14 Jan 2024 17:34:44 +0100 Subject: [PATCH] Bump version to 0.7.0 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 104b5ef..fbd88cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.7.0] - 2024-01-14 +- Also check `kind` when filtering tests (thanks @sunshowers) in [#30](https://github.com/LukasKalbertodt/libtest-mimic/pull/30) + - This is potentially breaking as additional or fewer tests might be executed in some situations. +- Add JSON format output (thanks @PaulWagener and @t-moe) in [#35](https://github.com/LukasKalbertodt/libtest-mimic/pull/35) +- Add no-op flags to add CLI compatibility for IntellJ Rust (thanks @Dinnerbone and @t-moe) [#28](https://github.com/LukasKalbertodt/libtest-mimic/pull/28) / [`70cdc55`](https://github.com/LukasKalbertodt/libtest-mimic/commit/70cdc55ee50df8325d11f5e2cbe53c6bf74d375d) + ## [0.6.1] - 2022-11-05 ### Fixed - Actually spawn as many threads as specified by `--test-threads` (thanks @hgzimmerman) in [#32](https://github.com/LukasKalbertodt/libtest-mimic/pull/32). @@ -101,7 +107,8 @@ Apart from an improved API, changes that motivated the rewrite are marked with - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.6.1...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.2...v0.6.0 [0.5.2]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.1...v0.5.2 diff --git a/Cargo.toml b/Cargo.toml index 502f7ed..01f5c2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libtest-mimic" -version = "0.6.1" +version = "0.7.0" authors = ["Lukas Kalbertodt "] edition = "2021" rust-version = "1.60"