From 829f0df0e1885f1f8e87a600b4054a24bd5ad24f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 31 Jul 2022 18:48:46 -0600 Subject: [PATCH] chacha20poly1305 v0.10.0 (#458) --- Cargo.lock | 2 +- chacha20poly1305/CHANGELOG.md | 20 +++++++++++++++++++- chacha20poly1305/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c565e2c0..65eedf9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -173,7 +173,7 @@ dependencies = [ [[package]] name = "chacha20poly1305" -version = "0.10.0-pre.2" +version = "0.10.0" dependencies = [ "aead", "chacha20", diff --git a/chacha20poly1305/CHANGELOG.md b/chacha20poly1305/CHANGELOG.md index 774616a6..50c57afe 100644 --- a/chacha20poly1305/CHANGELOG.md +++ b/chacha20poly1305/CHANGELOG.md @@ -4,6 +4,24 @@ 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). +## 0.10.0 (2022-07-31) +### Added +- `getrandom` feature ([#446]) +- Impl `ZeroizeOnDrop` for `ChaChaPoly1305` ([#447]) + +### Changed +- Bump `chacha20` to v0.9 ([#402]) +- Rust 2021 edition upgrade; MSRV 1.56+ ([#435]) +- Bump `aead` dependency to v0.5 ([#444]) +- Bump `poly1305` dependency to v0.8 ([#454]) + +[#402]: https://github.com/RustCrypto/AEADs/pull/402 +[#435]: https://github.com/RustCrypto/AEADs/pull/435 +[#444]: https://github.com/RustCrypto/AEADs/pull/444 +[#446]: https://github.com/RustCrypto/AEADs/pull/446 +[#447]: https://github.com/RustCrypto/AEADs/pull/447 +[#454]: https://github.com/RustCrypto/AEADs/pull/454 + ## 0.9.1 (2022-07-07) ### Changed - Unpin `zeroize` dependency ([#438]) @@ -12,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.9.0 (2021-08-29) ### Changed -- Bump `chacha20` to v0.9: now a hard dependency ([#365]) +- Bump `chacha20` to v0.8: now a hard dependency ([#365]) - MSRV 1.51+ ([#365]) ### Removed diff --git a/chacha20poly1305/Cargo.toml b/chacha20poly1305/Cargo.toml index 6d43e85d..eedee0c8 100644 --- a/chacha20poly1305/Cargo.toml +++ b/chacha20poly1305/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chacha20poly1305" -version = "0.10.0-pre.2" +version = "0.10.0" description = """ Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption with Additional Data Cipher (RFC 8439) with optional architecture-specific