From 4b17c45a4a555fec5d0ae5eee20ab1ea5b999d0b Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Sat, 18 Jan 2025 12:29:38 +0100 Subject: [PATCH] Update docs --- CHANGELOG.md | 5 +++++ README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8cc932..691bb38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added + +- On Rust 1.80 or newer, a wrapper for `std::sync::LazyLock` is now available. The MSRV has not been + changed; older versions simply don't get this wrapper. + ### Changed - Reworked CI to better test continued support for the minimum supported Rust version diff --git a/README.md b/README.md index 06cd825..6be98cf 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Add this dependency to your `Cargo.lock` file like any other: ```toml [dependencies] -tracing-mutex = "0.2" +tracing-mutex = "0.3" ``` Then use the locks provided by this library instead of the ones you would use otherwise.