From c3b6e5a72ab764752ea7e0a3aa158ba114c707c5 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 11 Nov 2022 20:37:55 +0000 Subject: [PATCH] zcash_primitives 0.9.0 --- zcash_client_backend/CHANGELOG.md | 2 +- zcash_client_backend/Cargo.toml | 2 +- zcash_client_sqlite/CHANGELOG.md | 2 +- zcash_client_sqlite/Cargo.toml | 4 ++-- zcash_extensions/Cargo.toml | 2 +- zcash_primitives/CHANGELOG.md | 1 + zcash_primitives/Cargo.toml | 2 +- zcash_proofs/CHANGELOG.md | 2 ++ zcash_proofs/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 8 deletions(-) diff --git a/zcash_client_backend/CHANGELOG.md b/zcash_client_backend/CHANGELOG.md index 03c3e344b..9b46c4e95 100644 --- a/zcash_client_backend/CHANGELOG.md +++ b/zcash_client_backend/CHANGELOG.md @@ -85,7 +85,7 @@ and this library adheres to Rust's notion of ### Changed - MSRV is now 1.56.1. - Bumped dependencies to `ff 0.12`, `group 0.12`, `bls12_381 0.7` - `zcash_primitives 0.8`, `orchard 0.3`. + `zcash_primitives 0.9`, `orchard 0.3`. - `zcash_client_backend::proto`: - The Protocol Buffers bindings are now generated for `prost 0.11` instead of `protobuf 2`. diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 5b0310e51..086293d31 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -23,7 +23,7 @@ development = ["zcash_proofs"] zcash_address = { version = "0.2", path = "../components/zcash_address" } zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_note_encryption = { version = "0.2", path = "../components/zcash_note_encryption" } -zcash_primitives = { version = "0.8", path = "../zcash_primitives" } +zcash_primitives = { version = "0.9", path = "../zcash_primitives" } # Dependencies exposed in a public API: # (Breaking upgrades to these require a breaking upgrade to this crate.) diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index b3fc781f9..cc3c1d9a6 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -65,7 +65,7 @@ and this library adheres to Rust's notion of (and in the future, outputs to other pools). Values for this column should be assigned by inference from the address type in the stored data. - MSRV is now 1.56.1. -- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`, `zcash_primitives 0.8`. +- Bumped dependencies to `ff 0.12`, `group 0.12`, `jubjub 0.9`, `zcash_primitives 0.9`. - Renamed the following to use lower-case abbreviations (matching Rust naming conventions): - `zcash_client_sqlite::BlockDB` to `BlockDb` diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index d73065b4e..f9ac8b5e6 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.56.1" [dependencies] zcash_client_backend = { version = "0.5", path = "../zcash_client_backend" } -zcash_primitives = { version = "0.8", path = "../zcash_primitives" } +zcash_primitives = { version = "0.9", path = "../zcash_primitives" } # Dependencies exposed in a public API: # (Breaking upgrades to these require a breaking upgrade to this crate.) @@ -48,7 +48,7 @@ rand_core = "0.6" regex = "1.4" tempfile = "3" zcash_proofs = { version = "0.8", path = "../zcash_proofs" } -zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = ["test-dependencies"] } +zcash_primitives = { version = "0.9", path = "../zcash_primitives", features = ["test-dependencies"] } zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] } [features] diff --git a/zcash_extensions/Cargo.toml b/zcash_extensions/Cargo.toml index b7d176151..34fa6a0f7 100644 --- a/zcash_extensions/Cargo.toml +++ b/zcash_extensions/Cargo.toml @@ -11,7 +11,7 @@ rust-version = "1.56.1" [dependencies] blake2b_simd = "1" -zcash_primitives = { version = "0.8", path = "../zcash_primitives", features = ["zfuture" ] } +zcash_primitives = { version = "0.9", path = "../zcash_primitives", features = ["zfuture" ] } [dev-dependencies] ff = "0.12" diff --git a/zcash_primitives/CHANGELOG.md b/zcash_primitives/CHANGELOG.md index 0a65576a3..1dab52deb 100644 --- a/zcash_primitives/CHANGELOG.md +++ b/zcash_primitives/CHANGELOG.md @@ -7,6 +7,7 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.9.0] - 2022-11-12 ### Added - Added to `zcash_primitives::transaction::builder`: - `Error::{InsufficientFunds, ChangeRequired, Balance, Fee}` diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index 7adbdc034..e551c0f96 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.8.1" +version = "0.9.0" authors = [ "Jack Grigg ", "Kris Nuttycombe " diff --git a/zcash_proofs/CHANGELOG.md b/zcash_proofs/CHANGELOG.md index 2a33ac28a..eaa3d7a87 100644 --- a/zcash_proofs/CHANGELOG.md +++ b/zcash_proofs/CHANGELOG.md @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Bumped dependencies to `zcash_primitives 0.9`. ## [0.8.0] - 2022-10-19 ### Changed diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 7c2286f5c..4f006b58b 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -17,7 +17,7 @@ categories = ["cryptography::cryptocurrencies"] all-features = true [dependencies] -zcash_primitives = { version = "0.8", path = "../zcash_primitives" } +zcash_primitives = { version = "0.9", path = "../zcash_primitives" } # Dependencies exposed in a public API: # (Breaking upgrades to these require a breaking upgrade to this crate.)