diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 483ada6..537d34e 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.2.1" +version = "0.2.2" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bitcoin", "bitcoin-internals", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 483ada6..537d34e 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.2.1" +version = "0.2.2" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bitcoin", "bitcoin-internals", diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 2ceb834..3bc7ae3 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.2 - 2024-06-21 + +- Fix bugs in `AddressType` + # 0.2.1 - 2024-06-17 - Enable all features in docs build. diff --git a/client/Cargo.toml b/client/Cargo.toml index 38f487e..19c585b 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-client" -version = "0.2.1" +version = "0.2.2" authors = [ "Steven Roose ", "Jean Pierre Dudey ", diff --git a/json/CHANGELOG.md b/json/CHANGELOG.md index aa70153..fd22cbc 100644 --- a/json/CHANGELOG.md +++ b/json/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.1 - 2024-06-21 + +- Implement `into_model` on all types. + # 0.2.0 - 2024-06-13 - Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake). diff --git a/json/Cargo.toml b/json/Cargo.toml index 0795a02..e1530bc 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-types" -version = "0.2.0" +version = "0.2.1" authors = [ "Steven Roose ", "Jean Pierre Dudey ", diff --git a/regtest/CHANGELOG.md b/regtest/CHANGELOG.md index 94d465a..b35db69 100644 --- a/regtest/CHANGELOG.md +++ b/regtest/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.2 - 2024-06-21 + +- Call `into_model` when creating/loading wallet. + # 0.2.1 - 2024-06-17 Do various little fixes to try and make the docs on `Client` more legible, specifically to alleviate diff --git a/regtest/Cargo.toml b/regtest/Cargo.toml index 9efb936..979b370 100644 --- a/regtest/Cargo.toml +++ b/regtest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-regtest" -version = "0.2.1" +version = "0.2.2" authors = ["Riccardo Casatta ", "Tobin C. Harding "] license = "MIT" repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"