From 732e8ffcdba5d4341360fdccd78c22258829a8b4 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Tue, 29 Oct 2024 10:02:15 -0700 Subject: [PATCH] tai64: v5.0.0 Changed - bump zeroize from 1.4.2 to 1.4.3 (#187) - Lint improvements (#824) - bump zeroize from 1.5.7 to 1.6.0 (#956) - bump zeroize from 1.7.0 to 1.8.1 (#1419) Fixed - fix TAI offset and verify with GH Action (#1583) --- Cargo.lock | 2 +- tai64/CHANGELOG.md | 16 ++++++++++++++++ tai64/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63bdacab7..48e2fc666 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,7 +1626,7 @@ dependencies = [ [[package]] name = "tai64" -version = "5.0.0-pre" +version = "5.0.0" dependencies = [ "serde", "zeroize", diff --git a/tai64/CHANGELOG.md b/tai64/CHANGELOG.md index 6640511d5..3a2e69a8b 100644 --- a/tai64/CHANGELOG.md +++ b/tai64/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 5.0.0 (2024-10-29) +### Changed +- bump zeroize from 1.4.2 to 1.4.3 ([#187]) +- Lint improvements ([#824]) +- bump zeroize from 1.5.7 to 1.6.0 ([#956]) +- bump zeroize from 1.7.0 to 1.8.1 ([#1419]) + +### Fixed +- fix TAI offset and verify with GH Action ([#1583]) + +[#187]: https://github.com/RustCrypto/formats/pull/187 +[#824]: https://github.com/RustCrypto/formats/pull/824 +[#956]: https://github.com/RustCrypto/formats/pull/956 +[#1419]: https://github.com/RustCrypto/formats/pull/1419 +[#1583]: https://github.com/RustCrypto/formats/pull/1583 + ## 4.0.0 (2021-11-04) ### Changed - Upgrade to Rust 2021 edition; MSRV 1.56+ diff --git a/tai64/Cargo.toml b/tai64/Cargo.toml index 7f0a1afc9..5324b316d 100644 --- a/tai64/Cargo.toml +++ b/tai64/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tai64" description = "TAI64 and TAI64N (i.e. Temps Atomique International) timestamp support for Rust" -version = "5.0.0-pre" +version = "5.0.0" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/formats/tree/master/tai64"