diff --git a/CHANGELOG.md b/CHANGELOG.md index a243e490..5511240f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.19.5 +- get_block_header_info() back to verbosity 1, verbosity 2 is very substantially slower +- new function get_block_header_info_full() to use verbosity 2 + # 0.19.4 - increase timeout to 300 seconds diff --git a/Cargo.lock b/Cargo.lock index 0fc9643d..2499bca7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc" -version = "0.19.4" +version = "0.19.5" dependencies = [ "async-trait", "bitcoinsv", @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc-json" -version = "0.19.4" +version = "0.19.5" dependencies = [ "approx", "bitcoinsv", diff --git a/client/Cargo.toml b/client/Cargo.toml index 3238928c..7b92e011 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc" -version = "0.19.4" +version = "0.19.5" authors = [ "Daniel Connolly " ] diff --git a/json/Cargo.toml b/json/Cargo.toml index 7f43f39d..906b0050 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc-json" -version = "0.19.4" +version = "0.19.5" authors = [ "Daniel Connolly ", ]