From 9fe7f51da84d55900e97f2778a96b8d94e1486c3 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 30 Oct 2023 15:47:20 +1100 Subject: [PATCH] Bump version to v0.18.0 Add changelog entry and bump the version number of the `json` crate. --- CHANGELOG.md | 5 ++++- client/Cargo.toml | 4 ++-- json/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) 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 4610d77d..e16365a0 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 ",