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/client/Cargo.toml b/client/Cargo.toml index c92c1479..c105c42c 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 ", diff --git a/json/Cargo.toml b/json/Cargo.toml index e3619718..cd156e89 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 ",