Skip to content

Commit 6f6af41

Browse files
authoredAug 20, 2024
Merge pull request #1501 from zcash/release/zcash_address-0.4.0
zcash_address: release version 0.4.0
2 parents 38972e9 + e6663e5 commit 6f6af41

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ categories = ["cryptography::cryptocurrencies"]
3232
[workspace.dependencies]
3333
# Intra-workspace dependencies
3434
equihash = { version = "0.2", path = "components/equihash" }
35-
zcash_address = { version = "0.3", path = "components/zcash_address" }
35+
zcash_address = { version = "0.4", path = "components/zcash_address" }
3636
zcash_client_backend = { version = "0.12", path = "zcash_client_backend" }
37-
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
37+
zcash_encoding = { version = "0.2.1", path = "components/zcash_encoding" }
3838
zcash_keys = { version = "0.2", path = "zcash_keys" }
3939
zcash_protocol = { version = "0.2", path = "components/zcash_protocol" }
4040
zip321 = { version = "0.0", path = "components/zip321" }

‎components/zcash_address/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@ and this library adheres to Rust's notion of
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.4.0] - 2024-08-19
911
### Added
1012
- `zcash_address::ZcashAddress::{can_receive_memo, can_receive_as, matches_receiver}`
1113
- `zcash_address::unified::Address::{can_receive_memo, has_receiver_of_type, contains_receiver}`
1214
- Module `zcash_address::testing` under the `test-dependencies` feature.
13-
- Module `zcash_address::unified::address::testing` under the
15+
- Module `zcash_address::unified::address::testing` under the
1416
`test-dependencies` feature.
1517

18+
### Changed
19+
- Updated `zcash_protocol` dependency to version `0.2`
20+
1621
## [0.3.2] - 2024-03-06
1722
### Added
1823
- `zcash_address::convert`:

‎components/zcash_address/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zcash_address"
33
description = "Zcash address parsing and serialization"
4-
version = "0.3.2"
4+
version = "0.4.0"
55
authors = [
66
"Jack Grigg <jack@electriccoin.co>",
77
]

‎supply-chain/audits.toml

+12
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,18 @@ who = "Daira-Emma Hopwood <daira@jacaranda.org>"
565565
criteria = "safe-to-run"
566566
delta = "0.1.6 -> 0.1.8"
567567

568+
[[audits.zcash_address]]
569+
who = "Kris Nuttycombe <kris@nutty.land>"
570+
criteria = "safe-to-deploy"
571+
delta = "0.3.2 -> 0.4.0"
572+
notes = "This release contains no unsafe code and consists soley of added convenience methods."
573+
574+
[[audits.zcash_encoding]]
575+
who = "Kris Nuttycombe <kris@nutty.land>"
576+
criteria = "safe-to-deploy"
577+
delta = "0.2.0 -> 0.2.1"
578+
notes = "This release adds minor convenience methods and involves no unsafe code."
579+
568580
[[audits.zerocopy]]
569581
who = "Daira-Emma Hopwood <daira@jacaranda.org>"
570582
criteria = "safe-to-deploy"

‎supply-chain/imports.lock

-7
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,6 @@ user-id = 6289
292292
user-login = "str4d"
293293
user-name = "Jack Grigg"
294294

295-
[[publisher.zcash_protocol]]
296-
version = "0.1.1"
297-
when = "2024-03-25"
298-
user-id = 169181
299-
user-login = "nuttycom"
300-
user-name = "Kris Nuttycombe"
301-
302295
[[publisher.zcash_protocol]]
303296
version = "0.2.0"
304297
when = "2024-08-19"

0 commit comments

Comments
 (0)