From b63b0ff9285e29b629465bb640932b0b07c7ff04 Mon Sep 17 00:00:00 2001 From: DanGould Date: Thu, 27 Jun 2024 14:00:26 -0400 Subject: [PATCH] Bump payjoin-cli version to 0.0.7-alpha --- Cargo.lock | 2 +- payjoin-cli/CHANGELOG.md | 14 ++++++++++++++ payjoin-cli/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ea5296e..49963c69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1709,7 +1709,7 @@ dependencies = [ [[package]] name = "payjoin-cli" -version = "0.0.6-alpha" +version = "0.0.7-alpha" dependencies = [ "anyhow", "async-trait", diff --git a/payjoin-cli/CHANGELOG.md b/payjoin-cli/CHANGELOG.md index 4c3138c3..d170a326 100644 --- a/payjoin-cli/CHANGELOG.md +++ b/payjoin-cli/CHANGELOG.md @@ -1,5 +1,19 @@ # payjoin-cli Changelog +## 0.0.7-alpha + +- Resume multiple payjoins easily with the `resume` subcommand. A repeat `send` + subcommand will also resume an existing session ([#283](https://github.com/payjoin/rust-payjoin/pull/283)) +- Normalize dash-separated long args ([#295](https://github.com/payjoin/rust-payjoin/pull/295)) +- Use sled database. Old .json storage files will no longer be read and should be deleted. +- read Network::from_core_arg ([#304](https://github.com/payjoin/rust-payjoin/pull/304)) +- Don't needlessly substitute outputs for v2 receivers ([#277](https://github.com/payjoin/rust-payjoin/pull/277)) +- Print instructions and info on interrupt ([#303](https://github.com/payjoin/rust-payjoin/pull/303)) + +### Contributors: + +@DanGould, @grizznaut, @thebrandonlucas + ## 0.0.6-alpha - fetch ohttp keys from `payjoin/io` feature diff --git a/payjoin-cli/Cargo.toml b/payjoin-cli/Cargo.toml index 65e4daa0..25037286 100644 --- a/payjoin-cli/Cargo.toml +++ b/payjoin-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payjoin-cli" -version = "0.0.6-alpha" +version = "0.0.7-alpha" authors = ["Dan Gould "] description = "A command-line Payjoin client for Bitcoin Core" repository = "https://github.com/payjoin/rust-payjoin"