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: ACKea0a31876f
apoelstra: ACK ea0a31876f7111d865d30ba0448801f4049aa42a; successfully ran local tests Tree-SHA512: b6667cc3dd3c5ef1498bbcc7907e620c32b62333b1b2cc4b5afb041e41d362d3731bb72f4cbfe6fc7801fd4523d98c54d9497aa51efc0281acbfb418dbd8e3cf
This commit is contained in:
commit
cc66dde4f4
|
@ -182,7 +182,7 @@ checksum = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "chacha20-poly1305"
|
name = "chacha20-poly1305"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hex-conservative 0.3.0",
|
"hex-conservative 0.3.0",
|
||||||
]
|
]
|
||||||
|
|
|
@ -184,7 +184,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "chacha20-poly1305"
|
name = "chacha20-poly1305"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hex-conservative 0.3.0",
|
"hex-conservative 0.3.0",
|
||||||
]
|
]
|
||||||
|
|
|
@ -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
|
# 0.1.1 - 2024-11-07
|
||||||
|
|
||||||
* The crate is now `no_std`.
|
* The crate is now `no_std`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "chacha20-poly1305"
|
name = "chacha20-poly1305"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["Nick Johnson <nick@yonson.dev>", "Robert Netzke <rustaceanrob@protonmail.com>"]
|
authors = ["Nick Johnson <nick@yonson.dev>", "Robert Netzke <rustaceanrob@protonmail.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||||
|
|
Loading…
Reference in New Issue