Merge rust-bitcoin/rust-bitcoin#3593: Release tracking PR: chacha20-poly1305 v0.1.1
2ae6a9abc1
Prep the chacha20-poly1305 crate for release (Nick Johnson) Pull request description: Bump the patch version to `v0.1.1` to include the no_std support. Could see this requiring `v0.2.0`, but went with the patch bump. ACKs for top commit: apoelstra: ACK 2ae6a9abc1cb6b0f3edb358ebe5e9a0781051abe; successfully ran local tests; let's do it tcharding: ACK2ae6a9abc1
Tree-SHA512: 880e8390447c238bfd0e9493682622213b91f7f41c8c320fea6af763e00d73fb30bfc545f420b79614a8b33249abbd08bc9dcb7ace9522a68862194240b7258a
This commit is contained in:
commit
c3a4ba2c5a
|
@ -184,7 +184,7 @@ checksum = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de"
|
|||
|
||||
[[package]]
|
||||
name = "chacha20-poly1305"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"hex-conservative 0.3.0",
|
||||
]
|
||||
|
|
|
@ -186,7 +186,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||
|
||||
[[package]]
|
||||
name = "chacha20-poly1305"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
dependencies = [
|
||||
"hex-conservative 0.3.0",
|
||||
]
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
# 0.1.1 - 2024-11-07
|
||||
|
||||
* The crate is now `no_std`.
|
||||
|
||||
# 0.1.0 - 2024-10-28
|
||||
|
||||
* Initial release to create the chacha20-poly1305 crate.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "chacha20-poly1305"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
license = "CC0-1.0"
|
||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||
description = "The ChaCha20 stream cipher and Poly1305 MAC based AEAD."
|
||||
|
|
Loading…
Reference in New Issue