Skip to content

Commit 7413feb

Browse files
Bump version to 0.8.0
1 parent 0720b25 commit 7413feb

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
- Replace dependency on threadpool crate with a custom solution built on the
9-
standard library only, and only using scoped threads
10-
-> fixes memory leaks observed when running under valgrind
8+
9+
## [0.8.0] - 2024-10-05
10+
- **Breaking**: bump MSRV to 1.65
11+
- Remove `threadpool` dependency, getting rid of memory leaks observed when running under valgrind (thanks @Felix-El) in [#46](https://github.com/LukasKalbertodt/libtest-mimic/pull/46)
12+
- Switch from `termcolor` to `anstream` to get rid of duplicate dependencies (thanks @hanna-kruppe) in [#44](https://github.com/LukasKalbertodt/libtest-mimic/pull/44)
13+
- Bump dev-dependency `fastrand` to `2` (thanks @alexanderkjall) in [#47](https://github.com/LukasKalbertodt/libtest-mimic/pull/47)
14+
- Fix outdated docs
15+
1116

1217
## [0.7.3] - 2024-05-10
1318
- Default to single-threaded tests for WebAssembly (thanks @alexcrichton) in [#41](https://github.com/LukasKalbertodt/libtest-mimic/pull/41)
@@ -120,7 +125,8 @@ Apart from an improved API, changes that motivated the rewrite are marked with
120125
- Everything.
121126

122127

123-
[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.3...HEAD
128+
[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.8.0...HEAD
129+
[0.8.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.3...v0.8.0
124130
[0.7.3]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.2...v0.7.3
125131
[0.7.2]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.1...v0.7.2
126132
[0.7.1]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.7.0...v0.7.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtest-mimic"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.65"

0 commit comments

Comments
 (0)