Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use release version 0.3.0 #11

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -98,7 +98,7 @@ dependencies = [

[[package]]
name = "bitcoind-json-rpc-types"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"bitcoin",
"bitcoin-internals",
Expand Down
4 changes: 2 additions & 2 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -98,7 +98,7 @@ dependencies = [

[[package]]
name = "bitcoind-json-rpc-types"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"bitcoin",
"bitcoin-internals",
Expand Down
2 changes: 1 addition & 1 deletion client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.2.2 - 2024-06-21
# 0.3.0 - 2024-06-21

- Fix bugs in `AddressType`

Expand Down
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoind-json-rpc-client"
version = "0.2.2"
version = "0.3.0"
authors = [
"Steven Roose <steven@stevenroose.org>",
"Jean Pierre Dudey <jeandudey@hotmail.com>",
Expand All @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.2.1 - 2024-06-21
# 0.3.0 - 2024-06-21

- Implement `into_model` on all types.

Expand Down
2 changes: 1 addition & 1 deletion json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoind-json-rpc-types"
version = "0.2.1"
version = "0.3.0"
authors = [
"Steven Roose <steven@stevenroose.org>",
"Jean Pierre Dudey <jeandudey@hotmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion regtest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.2.2 - 2024-06-21
# 0.3.0 - 2024-06-21

- Call `into_model` when creating/loading wallet.

Expand Down
4 changes: 2 additions & 2 deletions regtest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoind-json-rpc-regtest"
version = "0.2.2"
version = "0.3.0"
authors = ["Riccardo Casatta <riccardo@casatta.it>", "Tobin C. Harding <me@tobin.cc>"]
license = "MIT"
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
Expand All @@ -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"
Expand Down
Loading