From 24068cd63ad599492cddcbec8f999454feba1d17 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Sep 2023 08:31:03 -0600 Subject: [PATCH 1/4] zcash_client_backend 0.10.0-rc.2 --- Cargo.lock | 2 +- zcash_client_backend/Cargo.toml | 2 +- zcash_client_sqlite/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e03235117..c1ee37861 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2946,7 +2946,7 @@ dependencies = [ [[package]] name = "zcash_client_backend" -version = "0.10.0-rc.1" +version = "0.10.0-rc.2" dependencies = [ "assert_matches", "base64", diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index a56dc0c23..d6ac7701e 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_client_backend" description = "APIs for creating shielded Zcash light clients" -version = "0.10.0-rc.1" +version = "0.10.0-rc.2" authors = [ "Jack Grigg ", "Kris Nuttycombe " diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 69974bb95..d38ba1c2f 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.65" [dependencies] -zcash_client_backend = { version = "=0.10.0-rc.1", path = "../zcash_client_backend" } +zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend" } zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false } @@ -62,7 +62,7 @@ tempfile = "3.5.0" zcash_note_encryption = "0.4" zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" } zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] } -zcash_client_backend = { version = "=0.10.0-rc.1", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization"] } +zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization"] } zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] } [features] From e6b34eeaa2861a7fb3e7f6cdc1748481877e6fff Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Sep 2023 08:32:34 -0600 Subject: [PATCH 2/4] zcash_client_sqlite 0.8.0-rc.2 --- Cargo.lock | 2 +- zcash_client_sqlite/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1ee37861..dc4ed9fc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2988,7 +2988,7 @@ dependencies = [ [[package]] name = "zcash_client_sqlite" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" dependencies = [ "assert_matches", "bs58", diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index d38ba1c2f..be10f848e 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_client_sqlite" description = "An SQLite-based Zcash light client" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" authors = [ "Jack Grigg ", "Kris Nuttycombe " From b32aa3d2a6c51df328031d5f8544bd93465f733a Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Sep 2023 09:33:11 -0600 Subject: [PATCH 3/4] Fix missing zcash_client_backend feature dependency. --- zcash_client_sqlite/CHANGELOG.md | 2 +- zcash_client_sqlite/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index ed00b29c5..2e1c9533d 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -7,7 +7,7 @@ and this library adheres to Rust's notion of ## [Unreleased] -## [0.8.0-rc.1] - 2023-09-08 +## [0.8.0-rc.3] - 2023-09-12 ### Added - `zcash_client_sqlite::commitment_tree` Types related to management of note commitment trees using the `shardtree` crate. diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index be10f848e..fba2c8f3f 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_client_sqlite" description = "An SQLite-based Zcash light client" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" authors = [ "Jack Grigg ", "Kris Nuttycombe " @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.65" [dependencies] -zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend" } +zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["unstable-serialization"]} zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false } From 45ced4d16433652d47e6690c9af00a5943755cec Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Tue, 12 Sep 2023 12:11:46 -0600 Subject: [PATCH 4/4] Update Cargo.lock --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index dc4ed9fc5..4547bfefa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2988,7 +2988,7 @@ dependencies = [ [[package]] name = "zcash_client_sqlite" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "assert_matches", "bs58",