From ea0a31876f7111d865d30ba0448801f4049aa42a Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Thu, 15 May 2025 19:40:15 -0700 Subject: [PATCH] release: prep chacha20-poly1305 crate for 0.1.2 --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- chacha20_poly1305/CHANGELOG.md | 4 ++++ chacha20_poly1305/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index eabf863d5..211aa646a 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -182,7 +182,7 @@ checksum = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" [[package]] name = "chacha20-poly1305" -version = "0.1.1" +version = "0.1.2" dependencies = [ "hex-conservative 0.3.0", ] diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 002fdd04b..e886abeca 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -184,7 +184,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chacha20-poly1305" -version = "0.1.1" +version = "0.1.2" dependencies = [ "hex-conservative 0.3.0", ] diff --git a/chacha20_poly1305/CHANGELOG.md b/chacha20_poly1305/CHANGELOG.md index 8757ffb7b..7b7a6e926 100644 --- a/chacha20_poly1305/CHANGELOG.md +++ b/chacha20_poly1305/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.2 - 2025-05-15 + +* Fixed a bug which was doubling the amount of work, performance should be improved [#4083](https://github.com/rust-bitcoin/rust-bitcoin/pull/4083). + # 0.1.1 - 2024-11-07 * The crate is now `no_std`. diff --git a/chacha20_poly1305/Cargo.toml b/chacha20_poly1305/Cargo.toml index 710a1426b..daf439193 100644 --- a/chacha20_poly1305/Cargo.toml +++ b/chacha20_poly1305/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chacha20-poly1305" -version = "0.1.1" +version = "0.1.2" authors = ["Nick Johnson ", "Robert Netzke "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/"