Skip to content

Commit

Permalink
Merge pull request #121 from DanGould/cli-0.0.1-alpha
Browse files Browse the repository at this point in the history
Ready payjoin v0.11.0 and payjoin-cli v0.0.1-alpha
  • Loading branch information
DanGould authored Nov 29, 2023
2 parents c8baf67 + b9500cc commit 774a52d
Show file tree
Hide file tree
Showing 6 changed files with 16 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.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[workspace]
members = ["payjoin", "payjoin-cli"]
resolver = "2"
resolver = "2"

[patch.crates-io.payjoin]
path = "payjoin"
2 changes: 1 addition & 1 deletion payjoin-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# payjoin-cli Changelog

## 0.0.1
## 0.0.1-alpha

- Release initial payjoin-cli to send and receive payjoin from bitcoind
5 changes: 3 additions & 2 deletions payjoin-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "payjoin-cli"
version = "0.0.1"
version = "0.0.1-alpha"
authors = ["Dan Gould <[email protected]>", "Martin Habovstiak <[email protected]>"]
repository = "https://github.com/payjoin/rust-payjoin"
readme = "README.md"
edition = "2021"
resolver = "2"
exclude = ["tests"]

[[bin]]
name = "payjoin-cli"
Expand All @@ -26,7 +27,7 @@ env_logger = "0.9.0"
hyper = { version = "0.14", features = ["full"] }
hyper-rustls = { version = "0.24", optional = true }
log = "0.4.7"
payjoin = { path = "../payjoin", features = ["send", "receive", "base64"] }
payjoin = { version = "0.11.0", features = ["send", "receive", "base64"] }
ureq = "2.8.0"
rcgen = { version = "0.11.1", optional = true }
rustls = { version = "0.21.9", optional = true }
Expand Down
4 changes: 4 additions & 0 deletions payjoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Payjoin Changelog

## 0.11.0

- Introduce `send` `RequestBuilder` flow

## 0.10.0

- Export `base64` with feature by @jbesraa in #102
Expand Down
3 changes: 2 additions & 1 deletion payjoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "payjoin"
version = "0.10.0"
version = "0.11.0"
authors = ["Dan Gould <[email protected]>"]
description = "Payjoin Library for the BIP78 Pay to Endpoint protocol."
repository = "https://github.com/payjoin/rust-payjoin"
Expand All @@ -10,6 +10,7 @@ categories = ["api-bindings", "cryptography::cryptocurrencies", "network-program
license = "MITNFA"
resolver = "2"
edition = "2021"
exclude = ["tests"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 774a52d

Please sign in to comment.