From 7d976fa34071b225fafc637a5d60b06fe02c43ed Mon Sep 17 00:00:00 2001 From: jtnunley Date: Sat, 25 Feb 2023 13:09:42 -0800 Subject: [PATCH] v2.7.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f05ba81..63dbe13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 2.7.0 + +- Replace some `async` blocks with manual futures (#34) +- Remove our dependency on `futures-lite` (#36) +- Mark guard types with `#[clippy::has_significant_drop]` (#37) + # Version 2.6.0 - Add `OnceCell`. (#27) diff --git a/Cargo.toml b/Cargo.toml index b9f10fa..b1d5095 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-lock" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.6.0" +version = "2.7.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.48"