Skip to content

Commit

Permalink
Bump payjoin-cli version to 0.0.4-alpha
Browse files Browse the repository at this point in the history
and `payjoin` to `0.14.0`
  • Loading branch information
DanGould committed Feb 21, 2024
1 parent 3f54e36 commit af7ee90
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 7 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.

8 changes: 8 additions & 0 deletions payjoin-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# payjoin-cli Changelog

## 0.0.4-alpha

- Remove annoying duplicate code in tests. (#197)
- Refactor payjoin-cli v1, v2 features into modules (#198)
- Parse AppConfig types when they're passed (#195)
- Use spec OHTTP media types (#160)
- Handle ResponseError version-unsupported variant supported field (#165)

## 0.0.3-alpha

- Parse `WellKnownError` `ResponseError` from receivers (#120)
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.3-alpha"
version = "0.0.4-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.13.0", features = ["send", "receive", "base64"] }
payjoin = { version = "0.14.0", features = ["send", "receive", "base64"] }
rcgen = { version = "0.11.1", optional = true }
rustls = { version = "0.22.2", optional = true }
serde = { version = "1.0.160", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions payjoin-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Independent audit is welcome.
## Install payjoin-cli

```console
cargo install payjoin-cli --version 0.0.3-alpha
cargo install payjoin-cli --version 0.0.4-alpha
```

Get a list of commands and options:
Expand All @@ -36,7 +36,7 @@ Your configuration details will vary, but you may use this as a template.
### Install payjoin-cli with the V2 feature

```console
cargo install payjoin-cli --version 0.0.3-alpha --features v2
cargo install payjoin-cli --version 0.0.4-alpha --features v2
```

### V2 Configuration
Expand Down
17 changes: 17 additions & 0 deletions payjoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Payjoin Changelog


## 0.14.0

### API

- Handle `supported` versions in `ResponseError`
- Make `RequestContext`, `RequestBuilder` `Clone`
- Expose v2 mod internally to `pub(crate)` only
- Use typesafe KeyConfig for ohttp d/encapsulation
- Use spec OHTTP media types
- Build PjUri with PjUriBuilder (#185)
- Parse and pass urls as `Url` instead of `String`

### Fixes

- Remove broken doctests from send and receive mods (#179)

## 0.13.0

### API
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.13.0"
version = "0.14.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

0 comments on commit af7ee90

Please sign in to comment.