zcash_primitives release version 0.16.0

This commit is contained in:
Kris Nuttycombe 2024-08-19 13:42:12 -06:00
parent 6f6af4138a
commit 68788e4f2e
4 changed files with 6 additions and 3 deletions

2
Cargo.lock generated
View File

@ -5998,7 +5998,7 @@ dependencies = [
[[package]]
name = "zcash_primitives"
version = "0.15.1"
version = "0.16.0"
dependencies = [
"aes",
"assert_matches",

View File

@ -40,7 +40,7 @@ zcash_protocol = { version = "0.2", path = "components/zcash_protocol" }
zip321 = { version = "0.0", path = "components/zip321" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
zcash_primitives = { version = "0.16", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.15", path = "zcash_proofs", default-features = false }
# Shielded protocols

View File

@ -6,6 +6,9 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.16.0] - 2024-08-19
### Added
- `zcash_primitives::legacy::keys`:
- `impl From<TransparentKeyScope> for bip32::ChildNumber`

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_primitives"
description = "Rust implementations of the Zcash primitives"
version = "0.15.1"
version = "0.16.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"