Merge pull request #1518 from zcash/release/zcash_primitives-0.17.0

Release zcash_primitives version 0.17.0
This commit is contained in:
Kris Nuttycombe 2024-08-26 16:39:09 -06:00 committed by GitHub
commit 8a8d20ec8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 19 additions and 8 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -849,6 +849,12 @@ user-id = 1244 # ebfull
start = "2019-10-08" start = "2019-10-08"
end = "2025-04-22" end = "2025-04-22"
[[trusted.zcash_primitives]]
criteria = "safe-to-deploy"
user-id = 169181 # Kris Nuttycombe (nuttycom)
start = "2024-08-20"
end = "2025-08-26"
[[trusted.zcash_proofs]] [[trusted.zcash_proofs]]
criteria = ["safe-to-deploy", "crypto-reviewed", "license-reviewed"] criteria = ["safe-to-deploy", "crypto-reviewed", "license-reviewed"]
user-id = 6289 # Jack Grigg (str4d) user-id = 6289 # Jack Grigg (str4d)

View File

@ -279,11 +279,11 @@ user-login = "nuttycom"
user-name = "Kris Nuttycombe" user-name = "Kris Nuttycombe"
[[publisher.zcash_primitives]] [[publisher.zcash_primitives]]
version = "0.15.1" version = "0.17.0"
when = "2024-05-24" when = "2024-08-26"
user-id = 6289 user-id = 169181
user-login = "str4d" user-login = "nuttycom"
user-name = "Jack Grigg" user-name = "Kris Nuttycombe"
[[publisher.zcash_proofs]] [[publisher.zcash_proofs]]
version = "0.15.0" version = "0.15.0"

View File

@ -7,6 +7,11 @@ and this library adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
## [0.17.0] - 2024-08-26
### Changed
- Update dependencies to `zcash_protocol 0.3.0`, `zcash_address 0.5.0`
## [0.16.0] - 2024-08-19 ## [0.16.0] - 2024-08-19
### Added ### Added

View File

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