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

Bump version numbers #10

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.1"
version = "0.2.2"
dependencies = [
"bitcoin",
"bitcoind-json-rpc-types",
Expand All @@ -98,7 +98,7 @@ dependencies = [

[[package]]
name = "bitcoind-json-rpc-types"
version = "0.2.0"
version = "0.2.1"
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.1"
version = "0.2.2"
dependencies = [
"bitcoin",
"bitcoind-json-rpc-types",
Expand All @@ -98,7 +98,7 @@ dependencies = [

[[package]]
name = "bitcoind-json-rpc-types"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"bitcoin",
"bitcoin-internals",
Expand Down
4 changes: 4 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.2.2"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand Down
4 changes: 4 additions & 0 deletions json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
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.0"
version = "0.2.1"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand Down
4 changes: 4 additions & 0 deletions regtest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.2.2"
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
license = "MIT"
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
Expand Down
Loading