Prep the chacha20-poly1305 crate for release

Bump the patch version to 0.1.1 to include the no_std support.
This commit is contained in:
Nick Johnson 2024-11-07 15:28:37 -08:00
parent 7df5e7c1bc
commit 2ae6a9abc1
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."