Merge rust-bitcoin/rust-bitcoin#4518: Release tracking for chacha20-poly1305 v0.1.2

ea0a31876f release: prep chacha20-poly1305 crate for 0.1.2 (Nick Johnson)

Pull request description:

  Getting out this big bug fix for performance: https://github.com/rust-bitcoin/rust-bitcoin/pull/4083

ACKs for top commit:
  tcharding:
    ACK ea0a31876f
  apoelstra:
    ACK ea0a31876f7111d865d30ba0448801f4049aa42a; successfully ran local tests

Tree-SHA512: b6667cc3dd3c5ef1498bbcc7907e620c32b62333b1b2cc4b5afb041e41d362d3731bb72f4cbfe6fc7801fd4523d98c54d9497aa51efc0281acbfb418dbd8e3cf
This commit is contained in:
merge-script 2025-05-19 16:50:54 +00:00
commit cc66dde4f4
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
4 changed files with 7 additions and 3 deletions

View File

@ -182,7 +182,7 @@ checksum = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de"
[[package]]
name = "chacha20-poly1305"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"hex-conservative 0.3.0",
]

View File

@ -184,7 +184,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chacha20-poly1305"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"hex-conservative 0.3.0",
]

View File

@ -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`.

View File

@ -1,6 +1,6 @@
[package]
name = "chacha20-poly1305"
version = "0.1.1"
version = "0.1.2"
authors = ["Nick Johnson <nick@yonson.dev>", "Robert Netzke <rustaceanrob@protonmail.com>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"