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/Cargo.toml b/client/Cargo.toml index 78517caf..73c81539 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 2e24ea00..585b1907 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 ",