diff --git a/tokio-test/CHANGELOG.md b/tokio-test/CHANGELOG.md index 3fba3cec9d1..5b1786fb135 100644 --- a/tokio-test/CHANGELOG.md +++ b/tokio-test/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.2 (May 14, 2021) + +- test: add `assert_elapsed!` macro ([#3728]) + +[#3728]: https://github.com/tokio-rs/tokio/pull/3728 + # 0.4.1 (March 10, 2021) - Fix `io::Mock` to be `Send` and `Sync` ([#3594]) diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml index 2691c89f09a..55d5aafc557 100644 --- a/tokio-test/Cargo.toml +++ b/tokio-test/Cargo.toml @@ -6,13 +6,13 @@ name = "tokio-test" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-test-0.4.x" git tag. -version = "0.4.1" +version = "0.4.2" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-test/0.4.1/tokio_test" +documentation = "https://docs.rs/tokio-test/0.4.2/tokio_test" description = """ Testing utilities for Tokio- and futures-based code """