From 5295ce05ab197391cd1964f754e1e3340e9b8f2b Mon Sep 17 00:00:00 2001 From: Daniel Connolly Date: Thu, 7 Mar 2024 02:12:30 +0100 Subject: [PATCH] update for version 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. --- CHANGELOG.md | 8 +++++++- Cargo.lock | 4 ++-- client/Cargo.toml | 4 ++-- json/Cargo.toml | 2 +- json/src/lib.rs | 2 ++ 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f20d603..cb0ad30c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 1235cb6b..20bd1a6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc" -version = "0.19.1" +version = "0.19.2" dependencies = [ "async-trait", "bitcoinsv", @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc-json" -version = "0.19.1" +version = "0.19.2" dependencies = [ "approx", "bitcoinsv", diff --git a/client/Cargo.toml b/client/Cargo.toml index c1d871a9..9ca86062 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc" -version = "0.19.1" +version = "0.19.2" authors = [ "Daniel Connolly " ] @@ -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" diff --git a/json/Cargo.toml b/json/Cargo.toml index 4b70f25d..d552019b 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc-json" -version = "0.19.1" +version = "0.19.2" authors = [ "Daniel Connolly ", ] diff --git a/json/src/lib.rs b/json/src/lib.rs index 6286aea2..6520b841 100644 --- a/json/src/lib.rs +++ b/json/src/lib.rs @@ -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"]