diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 35640d1..e0b74a2 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin", "bitcoin-internals", @@ -253,7 +253,3 @@ name = "unicode-ident" version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" - -[[patch.unused]] -name = "bitcoind-json-rpc-regtest" -version = "0.1.0" diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 35640d1..e0b74a2 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin", "bitcoind-json-rpc-types", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "bitcoind-json-rpc-types" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitcoin", "bitcoin-internals", @@ -253,7 +253,3 @@ name = "unicode-ident" version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" - -[[patch.unused]] -name = "bitcoind-json-rpc-regtest" -version = "0.1.0" diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index e69de29..1c6a4da 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -0,0 +1,8 @@ +# 0.2.0 - 2024-06-13 + +- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake). + +# 0.1.0 - 2024-06-13 + +Initial release. + diff --git a/client/Cargo.toml b/client/Cargo.toml index 10bebd8..47a5b74 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-client" -version = "0.1.0" +version = "0.2.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -23,7 +23,7 @@ client-sync = ["jsonrpc"] [dependencies] bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] } -json = { package = "bitcoind-json-rpc-types", version = "0.1.0", default-features = false, features = [] } +json = { package = "bitcoind-json-rpc-types", version = "0.2.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 b787fe1..ae3503e 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.1.0", default-features = false, features = ["client-sync"] } -bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.1.0", default-features = false, features = [] } +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 = [] } rand = "0.8.5" env_logger = "0.9.0" diff --git a/json/CHANGELOG.md b/json/CHANGELOG.md index e69de29..aa70153 100644 --- a/json/CHANGELOG.md +++ b/json/CHANGELOG.md @@ -0,0 +1,8 @@ +# 0.2.0 - 2024-06-13 + +- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake). +- Fix `GetTransactionDetail` conversion to use a signed bitcoin amount. + +# 0.1.0 - 2024-06-13 + +Initial release. diff --git a/json/Cargo.toml b/json/Cargo.toml index 21c6908..0795a02 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-types" -version = "0.1.0" +version = "0.2.0" authors = [ "Steven Roose ", "Jean Pierre Dudey ", diff --git a/regtest/CHANGELOG.md b/regtest/CHANGELOG.md index 35afd5f..46f7294 100644 --- a/regtest/CHANGELOG.md +++ b/regtest/CHANGELOG.md @@ -1,62 +1,8 @@ -# Changelog +# 0.2.0 - 2024-06-13 -## 0.36.0 +- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake). -- Remove range dependencies for `bitcoincore-rpc` and depend on the - latest version `v0.19.0` [#163](https://github.com/rust-bitcoin/bitcoind/pull/163). +# 0.1.0 - 2024-06-13 -## 0.35.2 +Initial release, this is an import of `bitcoind v.036.0`. -- Use range dependencies for `bitcoincore-rpc` and `bitcoin_hashes` - -## Release 0.35.1 - -- Bump MSRV to 1.56.1 -- Add `BITCOIND_SKIP_DOWNLOAD` build feature - -## Release 0.34.2 - -- Support Bitcoin Core 26.0 - -## Release 0.34.1 - -- Optionally enable ZMQ - -## Release 0.34.0 - -- upgrade bitcoincore dep to 0.18.0 and with it bitcoin to 0.31.0 - -## Release 0.28.0 - -### Changed - -- bump `ureq`'s version to `2.5.0` -- bump `flate2`'s version to `1.0.24` -- bump `filetime`'s version to `0.2.18` - -## Release 0.27.1 - -### Changed - -- use bitcoin_hashes 0.11 also for build dep - -## Release 0.27.0 - -### Added - -- Introduced CHANGELOG -- Supports windows OS -- Provide errors if `rpcuser` and `rpcpassword` are provided - -### Changed - -- use bitcoin dep to 0.29.1 - -### Fixed - -- fix bitcoin 0.23 on MacOS X -- fix test flakiness - -### Removed - -- removed `datadir` from `ConnectionParams`, use equivalent `workdir()` diff --git a/regtest/Cargo.toml b/regtest/Cargo.toml index b891014..11f8d9b 100644 --- a/regtest/Cargo.toml +++ b/regtest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoind-json-rpc-regtest" -version = "0.1.0" +version = "0.2.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.1", features = ["client-sync"] } +bitcoind-json-rpc-client = { version = "0.2", features = ["client-sync"] } log = "0.4" which = "4.2.5" anyhow = "1.0.66"