Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump payjoin to 0.18.0 and payjoin-cli to 0.0.7-alpha #310

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions payjoin-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions payjoin-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "payjoin-cli"
version = "0.0.6-alpha"
version = "0.0.7-alpha"
authors = ["Dan Gould <[email protected]>"]
description = "A command-line Payjoin client for Bitcoin Core"
repository = "https://github.com/payjoin/rust-payjoin"
Expand Down Expand Up @@ -33,7 +33,7 @@ env_logger = "0.9.0"
hyper = { version = "0.14", features = ["full"] }
hyper-rustls = { version = "0.25", optional = true }
log = "0.4.7"
payjoin = { version = "0.17.0", features = ["send", "receive", "base64"] }
payjoin = { version = "0.18.0", features = ["send", "receive", "base64"] }
rcgen = { version = "0.11.1", optional = true }
reqwest = { version = "0.12", default-features = false }
rustls = { version = "0.22.2", optional = true }
Expand Down
18 changes: 18 additions & 0 deletions payjoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Payjoin Changelog

## 0.18.0

- Handle OHTTP encapsulated response status ([#284](https://github.com/payjoin/rust-payjoin/pull/284))
- Upgrade `receive::v2` Typestate machine to resume multiple payjoins simultaneously ([#283](https://github.com/payjoin/rust-payjoin/pull/283))
- `Enroller` became `SessionInitializer`
- `Enrolled` became `ActiveSession`
- `fallback_target()` became `pj_url()`
- `pj_url_builder()` was introduced
- `ContextV2` became `SessionContext`
- Include a bitcoin address in `SessionContext`
- Document it all ([#308](https://github.com/payjoin/rust-payjoin/pull/308))
- `send::ResponseError` variants fields got explicit names ([#304](https://github.com/payjoin/rust-payjoin/pull/304))
- Refactor output substitution with new fallable `try_substitute_outputs` ([#277](https://github.com/payjoin/rust-payjoin/pull/277))

### Contributors:

@DanGould, @grizznaut, @jbesraa, @thebrandonlucas

## 0.17.0

- Prepare Payjoin PSBT with no output keypaths ([#270](https://github.com/payjoin/rust-payjoin/pull/270))
Expand Down
2 changes: 1 addition & 1 deletion payjoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "payjoin"
version = "0.17.0"
version = "0.18.0"
authors = ["Dan Gould <[email protected]>"]
description = "Payjoin Library for the BIP78 Pay to Endpoint protocol."
repository = "https://github.com/payjoin/rust-payjoin"
Expand Down
Loading