From a7033ee06a97c52eb2f8131c095fbea6c6eecba3 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 23 Apr 2024 11:23:37 +0200 Subject: [PATCH] Prepare v0.7.2 release (#348) --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ecf3c5..cb8df00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 0.7.2 + +This release bumps the MSRV to 1.65. (#332) + +### Added + + - Add `Cell::into_inner` (#341) + +### Changed + + - Update generator to 0.8.1 (#338) + +### Fixed + + - Disable default features of tracing (#343) + - Fix typo (#344) + - Use `core::` instead of `std::` in `lazy_static!` macro (#340) + - Allow Mutex to work with `?Sized` types (#339) + # 0.7.1 (October 2, 2023) ### Added diff --git a/Cargo.toml b/Cargo.toml index f178191..e217536 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "loom" # - src/lib.rs # - Update CHANGELOG.md # - Create git tag -version = "0.7.1" +version = "0.7.2" edition = "2018" license = "MIT" authors = ["Carl Lerche "]