Release zcash_protocol version 0.3.0

This commit is contained in:
Kris Nuttycombe 2024-08-26 15:31:17 -06:00
parent b91f3c1790
commit a30037be81
4 changed files with 9 additions and 5 deletions

2
Cargo.lock generated
View File

@ -6068,7 +6068,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_protocol" name = "zcash_protocol"
version = "0.2.0" version = "0.3.0"
dependencies = [ dependencies = [
"document-features", "document-features",
"incrementalmerkletree", "incrementalmerkletree",

View File

@ -36,7 +36,7 @@ zcash_address = { version = "0.4", path = "components/zcash_address" }
zcash_client_backend = { version = "0.13", path = "zcash_client_backend" } zcash_client_backend = { version = "0.13", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2.1", path = "components/zcash_encoding" } zcash_encoding = { version = "0.2.1", path = "components/zcash_encoding" }
zcash_keys = { version = "0.3", path = "zcash_keys" } zcash_keys = { version = "0.3", path = "zcash_keys" }
zcash_protocol = { version = "0.2", path = "components/zcash_protocol" } zcash_protocol = { version = "0.3", path = "components/zcash_protocol" }
zip321 = { version = "0.1", path = "components/zip321" } zip321 = { version = "0.1", path = "components/zip321" }
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"

View File

@ -7,9 +7,13 @@ and this library adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
## [0.3.0] - 2024-08-26
### Changed
- Testnet activation height has been set for `consensus::BranchId::Nu6`.
### Removed ### Removed
- `impl {Add, Sub} for BlockHeight` - these operations were unused, and block - `impl {Add, Sub} for BlockHeight` - these operations were unused, and it
heights are a vector space, not a monoid. does not make sense to add block heights (it is not a monoid.)
## [0.2.0] - 2024-08-19 ## [0.2.0] - 2024-08-19
### Added ### Added

View File

@ -1,7 +1,7 @@
[package] [package]
name = "zcash_protocol" name = "zcash_protocol"
description = "Zcash protocol network constants and value types." description = "Zcash protocol network constants and value types."
version = "0.2.0" version = "0.3.0"
authors = [ authors = [
"Jack Grigg <jack@electriccoin.co>", "Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@nutty.land>", "Kris Nuttycombe <kris@nutty.land>",