From e3725e5999cf0bdd9d168e964289852bcc3958e7 Mon Sep 17 00:00:00 2001 From: Serge Barral Date: Thu, 4 Apr 2024 17:54:47 +0200 Subject: [PATCH] Prepare release v0.2.2 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89f25d1..c0e29ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.2.2 (2024-04-03) + +* Make it possible to initialize a `TaiClock` from an arbitrary `Instant` or an + arbitrary `SystemTime` ([#12]). +* Derive more traits on `TaiTime` and `TaiClock`. + +[#12]: https://github.com/asynchronics/tai-time/pull/12 + + # 0.2.1 (2024-04-03) * Add `TaiClock`, a monotonic clock that can generate TAI timestamps on all diff --git a/Cargo.toml b/Cargo.toml index 213d820..933d40b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "tai-time" # - Update CHANGELOG.md # - Update if necessary copyright notice in LICENSE-MIT # - Create a "vX.Y.Z" git tag -version = "0.2.1" +version = "0.2.2" authors = ["Serge Barral "] edition = "2021" rust-version = "1.64" diff --git a/README.md b/README.md index a67d8bd..7428e9a 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -tai-time = "0.2.1" +tai-time = "0.2.2" ```