Skip to content

Commit

Permalink
update for version 0.19.2
Browse files Browse the repository at this point in the history
- Updated to use bitcoinsv crate v0.2.2.
- Using verbosity level 2 for get_block_header_info to provide more information.
- Re-organized list of functions in RpcApi to put them in alphabetical order.
- Added example to client library main page.
  • Loading branch information
Danconnolly committed Mar 7, 2024
1 parent 004e08a commit 5295ce0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 0.19.2
- Updated to use bitcoinsv crate v0.2.2.
- Using verbosity level 2 for get_block_header_info to provide more information.
- Re-organized list of functions in RpcApi to put them in alphabetical order.
- Added example to client library main page.

# 0.19.1
- Updated to use bitcoinsv crate v0.2.1
- Updated to use bitcoinsv crate v0.2.1.

# 0.19.0

Expand Down
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.

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 = "bitcoinsv-rpc"
version = "0.19.1"
version = "0.19.2"
authors = [
"Daniel Connolly <[email protected]>"
]
Expand All @@ -17,7 +17,7 @@ name = "bitcoinsv_rpc"
path = "src/lib.rs"

[dependencies]
bitcoinsv-rpc-json = { version = "0.19.0", path = "../json" }
bitcoinsv-rpc-json = { version = "0.19.2", path = "../json" }
log = "0.4.5"
jsonrpc = { version = "0.16.0", features = ["minreq_http"]}
serde = "1"
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 = "bitcoinsv-rpc-json"
version = "0.19.1"
version = "0.19.2"
authors = [
"Daniel Connolly <[email protected]>",
]
Expand Down
2 changes: 2 additions & 0 deletions json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//!
//! This is a client library for the Bitcoin SV JSON-RPC API.
//!
//! This library is not expected to be used directly, it is a sub-component of the bitcoinsv-rpc crate.
//! You probably want the bitcoinsv-rpc crate.
#![crate_name = "bitcoinsv_rpc_json"]
#![crate_type = "rlib"]
Expand Down

0 comments on commit 5295ce0

Please sign in to comment.