Release `zip321` version 0.2.0

This commit is contained in:
Kris Nuttycombe 2024-10-04 12:36:28 -06:00
parent 739b9f9c9b
commit 0eec7487d8
4 changed files with 8 additions and 3 deletions

2
Cargo.lock generated
View File

@ -6159,7 +6159,7 @@ dependencies = [
[[package]]
name = "zip321"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"base64",
"nom",

View File

@ -37,7 +37,7 @@ zcash_client_backend = { version = "0.13", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2.1", path = "components/zcash_encoding" }
zcash_keys = { version = "0.4", path = "zcash_keys" }
zcash_protocol = { version = "0.4", path = "components/zcash_protocol" }
zip321 = { version = "0.1", path = "components/zip321" }
zip321 = { version = "0.2", path = "components/zip321" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.19", path = "zcash_primitives", default-features = false }

View File

@ -7,6 +7,11 @@ and this library adheres to Rust's notion of
## [Unreleased]
## [0.2.0] 2024-10-04
### Changed
- Migrated to `zcash_address 0.6`
## [0.1.0] 2024-08-20
The contents of this crate were factored out from `zcash_client_backend` to

View File

@ -1,7 +1,7 @@
[package]
name = "zip321"
description = "Parsing functions and data types for Zcash ZIP 321 Payment Request URIs"
version = "0.1.0"
version = "0.2.0"
authors = [
"Kris Nuttycombe <kris@electriccoin.co>"
]