Skip to content
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 <d@ngould.dev>"]
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 <d@ngould.dev>"]
description = "Payjoin Library for the BIP78 Pay to Endpoint protocol."
repository = "https://github.com/payjoin/rust-payjoin"
Expand Down