From 0d7f0d5a00d80e1c7a78ac6bfa1083b20a0448e1 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Thu, 7 Oct 2021 11:04:15 +0200 Subject: [PATCH] chore: prepare loom 0.5.2 (#229) --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe22d4bb..eb92f8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.5.2 (October 7, 2021) + +### Added + +- Add a loom::cell::Cell, which provides a basic wrapper of the loom UnsafeCell (#196) +- Arc counter manipulations (#225) +- Implement `Mutex::into_inner` and `RwLock::into_inner` (#215) +- Implement `Release`, `AcqRel`, and `SeqCst` fences (#220) +- `Arc::as_ptr` added (#230) +- `Arc::pin` added (#224) + +### Changed + +- Remove implicit `T: Sized` requirement from `UnsafeCell` (#222) +- Update tracing (#227) + # 0.5.1 (July 2, 2021) ### Added diff --git a/Cargo.toml b/Cargo.toml index c37fa0b2..2785747e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,12 +8,12 @@ name = "loom" # - Cargo.toml # - README.md # - Create git tag -version = "0.5.1" +version = "0.5.2" edition = "2018" license = "MIT" authors = ["Carl Lerche "] description = "Permutation testing for concurrent code" -documentation = "https://docs.rs/loom/0.5.1/loom" +documentation = "https://docs.rs/loom/0.5.2/loom" homepage = "https://github.com/tokio-rs/loom" repository = "https://github.com/tokio-rs/loom" readme = "README.md"