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

Ready payjoin v0.11.0 and payjoin-cli v0.0.1-alpha #121

Merged
merged 1 commit into from
Nov 29, 2023
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
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
Loading