Merge pull request #1517 from zcash/release/zcash_address-0.5.0

Release zcash_address version 0.5.0
This commit is contained in:
Kris Nuttycombe 2024-08-26 16:21:24 -06:00 committed by GitHub
commit 86f1177ac4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 18 additions and 8 deletions

2
Cargo.lock generated
View File

@ -5802,7 +5802,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_address" name = "zcash_address"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"bech32", "bech32",

View File

@ -32,7 +32,7 @@ categories = ["cryptography::cryptocurrencies"]
[workspace.dependencies] [workspace.dependencies]
# Intra-workspace dependencies # Intra-workspace dependencies
equihash = { version = "0.2", path = "components/equihash" } equihash = { version = "0.2", path = "components/equihash" }
zcash_address = { version = "0.4", path = "components/zcash_address" } zcash_address = { version = "0.5", 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" }

View File

@ -7,6 +7,10 @@ and this library adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
## [0.5.0] - 2024-08-26
### Changed
- Updated `zcash_protocol` dependency to version `0.3`
## [0.4.0] - 2024-08-19 ## [0.4.0] - 2024-08-19
### Added ### Added
- `zcash_address::ZcashAddress::{can_receive_memo, can_receive_as, matches_receiver}` - `zcash_address::ZcashAddress::{can_receive_memo, can_receive_as, matches_receiver}`

View File

@ -1,7 +1,7 @@
[package] [package]
name = "zcash_address" name = "zcash_address"
description = "Zcash address parsing and serialization" description = "Zcash address parsing and serialization"
version = "0.4.0" version = "0.5.0"
authors = [ authors = [
"Jack Grigg <jack@electriccoin.co>", "Jack Grigg <jack@electriccoin.co>",
] ]

View File

@ -783,6 +783,12 @@ user-id = 6289 # Jack Grigg (str4d)
start = "2021-03-07" start = "2021-03-07"
end = "2025-04-22" end = "2025-04-22"
[[trusted.zcash_address]]
criteria = "safe-to-deploy"
user-id = 169181 # Kris Nuttycombe (nuttycom)
start = "2024-08-20"
end = "2025-08-26"
[[trusted.zcash_client_backend]] [[trusted.zcash_client_backend]]
criteria = "safe-to-deploy" criteria = "safe-to-deploy"
user-id = 169181 # Kris Nuttycombe (nuttycom) user-id = 169181 # Kris Nuttycombe (nuttycom)

View File

@ -224,11 +224,11 @@ user-login = "str4d"
user-name = "Jack Grigg" user-name = "Jack Grigg"
[[publisher.zcash_address]] [[publisher.zcash_address]]
version = "0.3.2" version = "0.5.0"
when = "2024-03-06" when = "2024-08-26"
user-id = 6289 user-id = 169181
user-login = "str4d" user-login = "nuttycom"
user-name = "Jack Grigg" user-name = "Kris Nuttycombe"
[[publisher.zcash_client_backend]] [[publisher.zcash_client_backend]]
version = "0.13.0" version = "0.13.0"