diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9a8ccd..e9ecc7aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -# Unreleased +# 0.18.0 - MSRV changed from 1.41.1 to 1.48.0 +- Use `bitcoin::Network` in `GetBlockchainInfoResult `. +- Make checksum optional in `GetDescriptorInfoResult`. +- Make `getmempoolinfo` compatible with supported RPC versions. # 0.17.0 diff --git a/client/Cargo.toml b/client/Cargo.toml index d5475d1f..cb2573d1 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc" -version = "0.17.0" +version = "0.18.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -19,7 +19,7 @@ name = "bitcoincore_rpc" path = "src/lib.rs" [dependencies] -bitcoincore-rpc-json = { version = "0.17.0", path = "../json" } +bitcoincore-rpc-json = { version = "0.18.0", path = "../json" } log = "0.4.5" jsonrpc = "0.14.0" diff --git a/json/Cargo.toml b/json/Cargo.toml index af10a411..3b44c81c 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoincore-rpc-json" -version = "0.17.0" +version = "0.18.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ",