diff --git a/Cargo.lock b/Cargo.lock index 41afe519d..2cf521ebd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "zcash_primitives" -version = "0.19.0" +version = "0.20.0" dependencies = [ "aes", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 6b11b660a..7a7a2db0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ zcash_protocol = { version = "0.4.1", path = "components/zcash_protocol" } zip321 = { version = "0.2", path = "components/zip321" } zcash_note_encryption = "0.4" -zcash_primitives = { version = "0.19", path = "zcash_primitives", default-features = false } +zcash_primitives = { version = "0.20", path = "zcash_primitives", default-features = false } zcash_proofs = { version = "0.19", path = "zcash_proofs", default-features = false } # Shielded protocols diff --git a/zcash_primitives/CHANGELOG.md b/zcash_primitives/CHANGELOG.md index 8c357adc5..4b8d6a0e5 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.20.0] - 2024-11-14 + ### Added - A new feature flag, `non-standard-fees`, has been added. This flag is now required in order to make use of any types or methods that enable non-standard diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index d2b235dbe..d1421e200 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.19.0" +version = "0.20.0" authors = [ "Jack Grigg ", "Kris Nuttycombe "