diff --git a/CHANGELOG.md b/CHANGELOG.md index c237286d..96e8e242 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.0.2 +- update for bitcoinsv dependency version 0.2.7 + # 1.0.1 - only bitcoinsv-rpc - added new() method for Client which accepts a URI with username and password included diff --git a/Cargo.lock b/Cargo.lock index c8267418..cf4affba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -107,7 +107,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc" -version = "1.0.1" +version = "1.0.2" dependencies = [ "async-trait", "bitcoinsv", @@ -124,7 +124,7 @@ dependencies = [ [[package]] name = "bitcoinsv-rpc-json" -version = "1.0.0" +version = "1.0.2" dependencies = [ "approx", "bitcoinsv", @@ -391,7 +391,7 @@ dependencies = [ [[package]] name = "integration_test" -version = "0.1.0" +version = "1.0.2" dependencies = [ "bitcoinsv", "bitcoinsv-rpc", diff --git a/client/Cargo.toml b/client/Cargo.toml index ac477591..77c3ed43 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc" -version = "1.0.1" +version = "1.0.2" authors = [ "Daniel Connolly " ] @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] tokio = { version = ">=1.23.1", features = ["full"] } -bitcoinsv-rpc-json = { version = "1.0.0", path = "../json" } +bitcoinsv-rpc-json = { version = "1.0.2" } log = "0.4.5" jsonrpc = { version = "0.16.0", features = ["minreq_http"]} serde = "1" diff --git a/integration_test/Cargo.toml b/integration_test/Cargo.toml index 6de1569b..ecfb51d5 100644 --- a/integration_test/Cargo.toml +++ b/integration_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration_test" -version = "0.1.0" +version = "1.0.2" authors = ["Daniel Connolly "] edition = "2021" diff --git a/json/Cargo.toml b/json/Cargo.toml index bc9a6f4a..0291d9d5 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoinsv-rpc-json" -version = "1.0.0" +version = "1.0.2" authors = [ "Daniel Connolly ", ]