diff --git a/Cargo.lock b/Cargo.lock index d88d1524b..8710033f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "zcash_protocol" -version = "0.0.0" +version = "0.1.0" dependencies = [ "document-features", "incrementalmerkletree", diff --git a/Cargo.toml b/Cargo.toml index df119c243..4ef3e1306 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ zcash_address = { version = "0.3", path = "components/zcash_address" } zcash_client_backend = { version = "0.11", path = "zcash_client_backend" } zcash_encoding = { version = "0.2", path = "components/zcash_encoding" } zcash_keys = { version = "0.1", path = "zcash_keys" } -zcash_protocol = { version = "0.0", path = "components/zcash_protocol" } +zcash_protocol = { version = "0.1", path = "components/zcash_protocol" } zcash_note_encryption = "0.4" zcash_primitives = { version = "0.14", path = "zcash_primitives", default-features = false } diff --git a/components/zcash_protocol/CHANGELOG.md b/components/zcash_protocol/CHANGELOG.md index 64bcba948..5854c937a 100644 --- a/components/zcash_protocol/CHANGELOG.md +++ b/components/zcash_protocol/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] + +## [0.1.0] - 2024-03-06 The entries below are relative to the `zcash_primitives` crate as of the tag `zcash_primitives-0.14.0`. diff --git a/components/zcash_protocol/Cargo.toml b/components/zcash_protocol/Cargo.toml index 45d2c53e6..7a8114dad 100644 --- a/components/zcash_protocol/Cargo.toml +++ b/components/zcash_protocol/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_protocol" description = "Zcash protocol network constants and value types." -version = "0.0.0" +version = "0.1.0" authors = [ "Jack Grigg ", "Kris Nuttycombe ",