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:
    ACK 2ae6a9abc1

Tree-SHA512: 880e8390447c238bfd0e9493682622213b91f7f41c8c320fea6af763e00d73fb30bfc545f420b79614a8b33249abbd08bc9dcb7ace9522a68862194240b7258a
This commit is contained in:
merge-script 2024-11-11 16:43:11 +00:00
commit c3a4ba2c5a
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
4 changed files with 7 additions and 3 deletions

View File

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

View File

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

View File

@ -1,3 +1,7 @@
# 0.1.1 - 2024-11-07
* The crate is now `no_std`.
# 0.1.0 - 2024-10-28 # 0.1.0 - 2024-10-28
* Initial release to create the chacha20-poly1305 crate. * Initial release to create the chacha20-poly1305 crate.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "chacha20-poly1305" name = "chacha20-poly1305"
version = "0.1.0" version = "0.1.1"
license = "CC0-1.0" license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/" repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
description = "The ChaCha20 stream cipher and Poly1305 MAC based AEAD." description = "The ChaCha20 stream cipher and Poly1305 MAC based AEAD."