Skip to content

Commit

Permalink
Showing 4 changed files with 22 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion payjoin-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 }
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))
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 <d@ngould.dev>"]
description = "Payjoin Library for the BIP78 Pay to Endpoint protocol."
repository = "https://github.com/payjoin/rust-payjoin"

0 comments on commit c952b2a

Please sign in to comment.