diff --git a/CHANGELOG.md b/CHANGELOG.md index 530ace78..aeb4e0d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.6 (October 8, 2020) + +### Added +- `thread::Thread` and `thread::ThreadId` (#175) + # 0.3.5 (July 26, 2020) ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 17b0af82..04e23efd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,12 +9,12 @@ name = "loom" # - Cargo.toml # - README.md # - Create git tag -version = "0.3.5" +version = "0.3.6" edition = "2018" license = "MIT" authors = ["Carl Lerche "] description = "Permutation testing for concurrent code" -documentation = "https://docs.rs/loom/0.3.5/loom" +documentation = "https://docs.rs/loom/0.3.6/loom" homepage = "https://github.com/tokio-rs/loom" repository = "https://github.com/tokio-rs/loom" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 717fa7a0..a49440e4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/loom/0.3.5")] +#![doc(html_root_url = "https://docs.rs/loom/0.3.6")] #![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)] #![cfg_attr(loom_nightly, feature(track_caller))]