diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cab4475..81fc73c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ -# Unreleased - -- MSRV changed from 1.48.0 to 1.56.1 +# 0.19.0 + +- Change MSRV from 1.48.0 to 1.56.1 [#334](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/334) +- Implement `verifymessage` RCP call (and add "verifymessage" feature) + - [#326](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/326) + - [#343](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/343) +- Upgrade `bitcoin` dependency to `v0.32.0` [#337](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/337) +- Upgrade `jsonrpc` dependency to `v0.18.0` [#339](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/339) +- Use `jsonrpc` "minreq_http" feature [#341](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/341) +- Add "rand" feature [#342](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/342) # 0.18.0 diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 7e6c3ace..b58e1df5 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -92,7 +92,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitcoincore-rpc-json", "jsonrpc", @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc-json" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitcoin", "serde", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 7e6c3ace..b58e1df5 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -92,7 +92,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitcoincore-rpc-json", "jsonrpc", @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc-json" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitcoin", "serde", diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md deleted file mode 100644 index 8bf18a0d..00000000 --- a/client/CHANGELOG.md +++ /dev/null @@ -1,11 +0,0 @@ -CHANGELOG -========= - -# v0.2.0 - -- updated dependencies: - - bitcoin: 0.15 -> 0.16 - - secp256ka: 0.11 -> 0.12 -- Client methods take `&self` instead of `&mut self` -- added `create_raw_transaction` -- updated `get_new_address` to Core 0.16 spec diff --git a/client/Cargo.toml b/client/Cargo.toml index cf64e505..90b92fdc 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc" -version = "0.18.0" +version = "0.19.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -23,7 +23,7 @@ default = ["rand"] rand = ["bitcoincore-rpc-json/rand"] [dependencies] -bitcoincore-rpc-json = { version = "0.18.0", path = "../json" } +bitcoincore-rpc-json = { version = "0.19.0", path = "../json" } log = "0.4.5" jsonrpc = { version = "0.18.0", features = ["minreq_http"] } diff --git a/json/Cargo.toml b/json/Cargo.toml index 69d0d405..b7be19e1 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc-json" -version = "0.18.0" +version = "0.19.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ",