From c984202005f910d4dcb0095e96fe58bdc148514d Mon Sep 17 00:00:00 2001 From: Serge Barral Date: Thu, 4 Apr 2024 13:44:10 +0200 Subject: [PATCH] Prepare release v0.2.2 --- CHANGELOG.md | 9 ++++++--- README.md | 2 +- asynchronix/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0efdd9..a1c69cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ -# unreleased +# 0.2.2 (2024-04-04) -- Add `serde` feature and serialization support for `MonotonicTime`. -- Update `multishot` dependency due to soundness issue in older version. +- Add `serde` feature and serialization support for `MonotonicTime` ([#19]). +- Update `multishot` dependency due to soundness issue in older version ([#23]). + +[#19]: https://github.com/asynchronics/asynchronix/pull/19 +[#23]: https://github.com/asynchronics/asynchronix/pull/23 # 0.2.1 (2024-03-06) diff --git a/README.md b/README.md index bad4df8..e2f8644 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -asynchronix = "0.2.1" +asynchronix = "0.2.2" ``` diff --git a/asynchronix/Cargo.toml b/asynchronix/Cargo.toml index 8e0b1ab..faab1bf 100644 --- a/asynchronix/Cargo.toml +++ b/asynchronix/Cargo.toml @@ -7,7 +7,7 @@ name = "asynchronix" # - Update if necessary copyright notice in LICENSE-MIT # - Create a "vX.Y.Z" git tag authors = ["Serge Barral "] -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.64" license = "MIT OR Apache-2.0"