From 2a571c1a4db8630ea952044bf2483151827699cb Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 21 Jun 2024 03:58:43 +1000 Subject: [PATCH] Use release version 0.3.0 The recent changes were invasive, lets do a clean release of all three crates at version `0.3.0`. --- Cargo-minimal.lock | 4 ++-- Cargo-recent.lock | 4 ++-- client/CHANGELOG.md | 2 +- client/Cargo.toml | 4 ++-- integration_test/Cargo.toml | 4 ++-- json/CHANGELOG.md | 2 +- json/Cargo.toml | 2 +- regtest/CHANGELOG.md | 2 +- regtest/Cargo.toml | 4 ++-- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 537d34e..b4b9bd5 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.2.2" +version = "0.3.0" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.2.1" +version = "0.3.0" dependencies = [ "bitcoin", "bitcoin-internals", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 537d34e..b4b9bd5 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.2.2" +version = "0.3.0" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.2.1" +version = "0.3.0" dependencies = [ "bitcoin", "bitcoin-internals", diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 3bc7ae3..189cce3 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.2.2 - 2024-06-21 +# 0.3.0 - 2024-06-21 - Fix bugs in `AddressType` diff --git a/client/Cargo.toml b/client/Cargo.toml index 19c585b..40c967f 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-client" -version = "0.2.2" +version = "0.3.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -27,7 +27,7 @@ client-sync = ["jsonrpc"] [dependencies] bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] } -json = { package = "bitcoind-json-rpc-types", version = "0.2.0", default-features = false, features = [] } +json = { package = "bitcoind-json-rpc-types", version = "0.3.0", default-features = false, features = [] } log = "0.4" serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] } serde_json = { version = "1.0.117" } diff --git a/integration_test/Cargo.toml b/integration_test/Cargo.toml index ae3503e..3b8b80b 100644 --- a/integration_test/Cargo.toml +++ b/integration_test/Cargo.toml @@ -46,8 +46,8 @@ edition = "2021" [dependencies] bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] } -client = { package = "bitcoind-json-rpc-client", version = "0.2.0", default-features = false, features = ["client-sync"] } -bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.2.0", default-features = false, features = [] } +client = { package = "bitcoind-json-rpc-client", version = "0.3.0", default-features = false, features = ["client-sync"] } +bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.3.0", default-features = false, features = [] } rand = "0.8.5" env_logger = "0.9.0" diff --git a/json/CHANGELOG.md b/json/CHANGELOG.md index fd22cbc..0bf5bbe 100644 --- a/json/CHANGELOG.md +++ b/json/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.2.1 - 2024-06-21 +# 0.3.0 - 2024-06-21 - Implement `into_model` on all types. diff --git a/json/Cargo.toml b/json/Cargo.toml index e1530bc..8ed6785 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-types" -version = "0.2.1" +version = "0.3.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", diff --git a/regtest/CHANGELOG.md b/regtest/CHANGELOG.md index b35db69..53cd3a6 100644 --- a/regtest/CHANGELOG.md +++ b/regtest/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.2.2 - 2024-06-21 +# 0.3.0 - 2024-06-21 - Call `into_model` when creating/loading wallet. diff --git a/regtest/Cargo.toml b/regtest/Cargo.toml index 979b370..3f2cc40 100644 --- a/regtest/Cargo.toml +++ b/regtest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-regtest" -version = "0.2.2" +version = "0.3.0" authors = ["Riccardo Casatta ", "Tobin C. Harding "] license = "MIT" repository = "https://github.com/tcharding/rust-bitcoind-json-rpc" @@ -13,7 +13,7 @@ rust-version = "1.56.1" exclude = ["tests", "contrib"] [dependencies] -bitcoind-json-rpc-client = { version = "0.2", features = ["client-sync"] } +bitcoind-json-rpc-client = { version = "0.3", features = ["client-sync"] } log = "0.4" which = "4.2.5" anyhow = "1.0.66"