From fa73e4c04b9e3ff022e9acf3d0613212dfe45349 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 2 Oct 2024 20:12:02 +0000 Subject: [PATCH] zcash_primitives 0.18.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- supply-chain/imports.lock | 4 ++++ zcash_client_backend/CHANGELOG.md | 3 ++- zcash_client_sqlite/CHANGELOG.md | 3 ++- zcash_keys/CHANGELOG.md | 3 ++- zcash_primitives/CHANGELOG.md | 2 ++ zcash_primitives/Cargo.toml | 2 +- zcash_proofs/CHANGELOG.md | 2 +- 9 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ce6610bd..00c807d2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6020,7 +6020,7 @@ dependencies = [ [[package]] name = "zcash_primitives" -version = "0.17.0" +version = "0.18.0" dependencies = [ "aes", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 1df798ed8..20a9c46a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ zcash_protocol = { version = "0.4", path = "components/zcash_protocol" } zip321 = { version = "0.1", path = "components/zip321" } zcash_note_encryption = "0.4" -zcash_primitives = { version = "0.17", path = "zcash_primitives", default-features = false } +zcash_primitives = { version = "0.18", path = "zcash_primitives", default-features = false } zcash_proofs = { version = "0.17", path = "zcash_proofs", default-features = false } # Shielded protocols diff --git a/supply-chain/imports.lock b/supply-chain/imports.lock index 4a9090bb7..5b67329da 100644 --- a/supply-chain/imports.lock +++ b/supply-chain/imports.lock @@ -1,6 +1,10 @@ # cargo-vet imports lock +[[unpublished.zcash_primitives]] +version = "0.18.0" +audited_as = "0.17.0" + [[unpublished.zcash_protocol]] version = "0.4.0" audited_as = "0.3.0" diff --git a/zcash_client_backend/CHANGELOG.md b/zcash_client_backend/CHANGELOG.md index 61a02654a..49039aa30 100644 --- a/zcash_client_backend/CHANGELOG.md +++ b/zcash_client_backend/CHANGELOG.md @@ -13,7 +13,8 @@ and this library adheres to Rust's notion of - `WalletSummary::recovery_progress` ### Changed -- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`. +- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`, + `zcash_protocol 0.4`. - The `Account` trait now uses an associated type for its `AccountId` type instead of a type parameter. This change allows for the simplification of some type signatures. diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index fcc550c0e..f3929646b 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -8,7 +8,8 @@ and this library adheres to Rust's notion of ## [Unreleased] ### Changed -- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`. +- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`, + `zcash_protocol 0.4`. - `zcash_client_sqlite::error::SqliteClientError::RequestedRewindInvalid` is now a structured variant. diff --git a/zcash_keys/CHANGELOG.md b/zcash_keys/CHANGELOG.md index 007944d2a..89b8ab08f 100644 --- a/zcash_keys/CHANGELOG.md +++ b/zcash_keys/CHANGELOG.md @@ -13,7 +13,8 @@ and this library adheres to Rust's notion of - `impl std::error::Error for DerivationError` ### Changed -- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`. +- Migrated to `orchard 0.10`, `sapling-crypto 0.3`, `zcash_primitives 0.18`, + `zcash_protocol 0.4`. ## [0.3.0] - 2024-08-19 ### Notable changes diff --git a/zcash_primitives/CHANGELOG.md b/zcash_primitives/CHANGELOG.md index b617d284e..f431c3f02 100644 --- a/zcash_primitives/CHANGELOG.md +++ b/zcash_primitives/CHANGELOG.md @@ -7,6 +7,8 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.18.0] - 2024-10-02 + ### Changed - Update dependencies to `incrementalmerkletree 0.7`, `orchard 0.10`, `sapling-crypto 0.3`, `zcash_protocol 0.4`. diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index 4ab0b2ee0..5654b0c69 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_primitives" description = "Rust implementations of the Zcash primitives" -version = "0.17.0" +version = "0.18.0" authors = [ "Jack Grigg ", "Kris Nuttycombe " diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 22a22d21b..e5887cdfc 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -8,7 +8,7 @@ and this library adheres to Rust's notion of ## [Unreleased] ### Changed -- Migrated to `sapling-crypto 0.3`. +- Migrated to `sapling-crypto 0.3`, `zcash_primitives 0.18`. ## [0.17.0] - 2024-08-26