Skip to content

Commit 098e46a

Browse files
authoredAug 20, 2024··
Merge pull request #1492 from zcash/release/zcash_primitives-0.16.0
zcash_primitives: Release version 0.16.0
2 parents 6f6af41 + 3f8af7f commit 098e46a

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ zcash_protocol = { version = "0.2", path = "components/zcash_protocol" }
4040
zip321 = { version = "0.0", path = "components/zip321" }
4141

4242
zcash_note_encryption = "0.4"
43-
zcash_primitives = { version = "0.15", path = "zcash_primitives", default-features = false }
43+
zcash_primitives = { version = "0.16", path = "zcash_primitives", default-features = false }
4444
zcash_proofs = { version = "0.15", path = "zcash_proofs", default-features = false }
4545

4646
# Shielded protocols

‎supply-chain/audits.toml

+6
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,12 @@ criteria = "safe-to-deploy"
577577
delta = "0.2.0 -> 0.2.1"
578578
notes = "This release adds minor convenience methods and involves no unsafe code."
579579

580+
[[audits.zcash_primitives]]
581+
who = "Kris Nuttycombe <kris@nutty.land>"
582+
criteria = "safe-to-deploy"
583+
delta = "0.15.1 -> 0.16.0"
584+
notes = "The primary change here is the switch from the `hdwallet` dependency to using `bip32`."
585+
580586
[[audits.zerocopy]]
581587
who = "Daira-Emma Hopwood <daira@jacaranda.org>"
582588
criteria = "safe-to-deploy"

‎zcash_primitives/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.16.0] - 2024-08-19
11+
912
### Added
1013
- `zcash_primitives::legacy::keys`:
1114
- `impl From<TransparentKeyScope> for bip32::ChildNumber`

‎zcash_primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_primitives"
33
description = "Rust implementations of the Zcash primitives"
4-
version = "0.15.1"
4+
version = "0.16.0"
55
authors = [
66
"Jack Grigg <jack@z.cash>",
77
"Kris Nuttycombe <kris@electriccoin.co>"

0 commit comments

Comments
 (0)
Please sign in to comment.