From 7188c7d2e4c454fbcf15251093fdb36ea1dc478a Mon Sep 17 00:00:00 2001 From: Bernhard Kragl Date: Tue, 23 May 2023 22:05:12 +0200 Subject: [PATCH] Release v0.6.1 (#108) --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8ae272..02fefd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.6.1 (May 23, 2023) + +* Add feature to tag tasks (#98) +* Add scheduler to check for uncontrolled nondeterminism (#96, #97) +* Support spurious wakeups for `thread::park` (#101) +* Support different leaders when `sync::Barrier` is reused (#102) +* Make `{Mutex, Condvar, RwLock}::new` const (#106) +* Improve tracing spans (#99) +* Fix spurious deadlocks with `FuturesUnordered` (#105) +* Split schedule output over multiple lines (#103) +* Bump `futures` dependency (#107) + # 0.6.0 (January 24, 2023) This version renames the [`silence_atomic_ordering_warning` configuration option](https://docs.rs/shuttle/0.5.0/shuttle/struct.Config.html#structfield.silence_atomic_ordering_warning) to `silence_warnings`, as well as the corresponding environment variables, to enable future warnings to be controlled by the same mechanism. diff --git a/Cargo.toml b/Cargo.toml index e9b7f3a..f7a102b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" description = "A library for testing concurrent Rust code"