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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@

# 0.15.0

- bump bitcoin crate version to 0.28.0
- add `get_block_stats`
- add `add_node`
- add `remove_node`
- add `onetry_node`
- add `disconnect_node`
- add `disconnect_node_by_id`
- add `get_added_node_info`
- add `get_node_addresses`
- add `list_banned`
- add `clear_banned`
- add `add_ban`
- add `remove_ban`
- make `Auth::get_user_pass` public
- add `ScriptPubkeyType::witness_v1_taproot`

# 0.14.0

- add `wallet_conflicts` field in `WalletTxInfo`
Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoincore-rpc"
version = "0.14.0"
version = "0.15.0"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand All @@ -18,7 +18,7 @@ name = "bitcoincore_rpc"
path = "src/lib.rs"

[dependencies]
bitcoincore-rpc-json = { version = "0.14.0", path = "../json" }
bitcoincore-rpc-json = { version = "0.15.0", path = "../json" }

log = "0.4.5"
jsonrpc = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoincore-rpc-json"
version = "0.14.0"
version = "0.15.0"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand Down