Merge pull request #1499 from nuttycom/release/zcash_protocol-0.2.0

zcash_protocol release version 0.2.0
This commit is contained in:
Kris Nuttycombe 2024-08-19 14:59:05 -06:00 committed by GitHub
commit abb241cd65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 3 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -6,11 +6,14 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.2.0] - 2024-08-19
### Added
- `zcash_protocol::PoolType::{TRANSPARENT, SAPLING, ORCHARD}`
### Changed
- MSRV is now 1.70.0.
- `consensus::BranchId` now has an additional `Nu6` variant.
## [0.1.1] - 2024-03-25
### Added

View File

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