From 0eec7487d8f2bc1b8b46b274a16ce0d45f3a52ee Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Fri, 4 Oct 2024 12:36:28 -0600 Subject: [PATCH] Release `zip321` version 0.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- components/zip321/CHANGELOG.md | 5 +++++ components/zip321/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbe94ec3a..bdb79d122 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6159,7 +6159,7 @@ dependencies = [ [[package]] name = "zip321" -version = "0.1.0" +version = "0.2.0" dependencies = [ "base64", "nom", diff --git a/Cargo.toml b/Cargo.toml index 8bea944b0..c20e8d5a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 } diff --git a/components/zip321/CHANGELOG.md b/components/zip321/CHANGELOG.md index a9e6bf168..faf0251dc 100644 --- a/components/zip321/CHANGELOG.md +++ b/components/zip321/CHANGELOG.md @@ -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 diff --git a/components/zip321/Cargo.toml b/components/zip321/Cargo.toml index 013f824e9..be67284a3 100644 --- a/components/zip321/Cargo.toml +++ b/components/zip321/Cargo.toml @@ -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 " ]