Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Use release version 0.3.0
Browse files Browse the repository at this point in the history
The recent changes were invasive, lets do a clean release of all three
crates at version `0.3.0`.
  • Loading branch information
tcharding committed Jun 20, 2024
1 parent 939b6a5 commit 2a571c1
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
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 <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
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 <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
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 <[email protected]>", "Tobin C. Harding <[email protected]>"]
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

0 comments on commit 2a571c1

Please sign in to comment.