Skip to content

Commit 4f10bd0

Browse files
committed
Merge #23: Release tracking PR: Bump versions to 0.5.0
be6d4e0 Bump versions to 0.5.0 (Tobin C. Harding) Pull request description: In preparation for releasing all three crates bump the version, add a changlog entry, and update the lock files. For the record this release of `types` will include fleshed out support in `types` for v17 and v18. ACKs for top commit: apoelstra: ACK be6d4e0; successfully ran local tests; will let you merge, tag and publish Tree-SHA512: dd22afbdcfa9872b2818d04b49ef6a99b1b8390d791b5cf97143ef91cc43d33a388eee22a765fa248165c107e8e9593be699236e3aa076d2f3f0412362d8cf94
2 parents 20d6a04 + be6d4e0 commit 4f10bd0

File tree

9 files changed

+25
-14
lines changed

9 files changed

+25
-14
lines changed

Cargo-minimal.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ checksum = "bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749"
105105

106106
[[package]]
107107
name = "corepc-client"
108-
version = "0.4.0"
108+
version = "0.5.0"
109109
dependencies = [
110110
"bitcoin",
111111
"corepc-types",
@@ -117,7 +117,7 @@ dependencies = [
117117

118118
[[package]]
119119
name = "corepc-types"
120-
version = "0.4.0"
120+
version = "0.5.0"
121121
dependencies = [
122122
"bitcoin",
123123
"bitcoin-internals",

Cargo-recent.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ checksum = "bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749"
105105

106106
[[package]]
107107
name = "corepc-client"
108-
version = "0.4.0"
108+
version = "0.5.0"
109109
dependencies = [
110110
"bitcoin",
111111
"corepc-types",
@@ -117,7 +117,7 @@ dependencies = [
117117

118118
[[package]]
119119
name = "corepc-types"
120-
version = "0.4.0"
120+
version = "0.5.0"
121121
dependencies = [
122122
"bitcoin",
123123
"bitcoin-internals",

client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.5.0 - 2024-12-16
2+
3+
- Add support for Bitcoin Core v27.2
4+
- Add a bunch more methods to the `Client`
5+
- Flesh out v17 and v18
6+
17
# 0.4.0 - 2024-11-14
28

39
- Add support for Bitcoin Core v28

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-client"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -22,7 +22,7 @@ client-sync = ["jsonrpc"]
2222

2323
[dependencies]
2424
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
25-
types = { package = "corepc-types", version = "0.4.0", default-features = false, features = [] }
25+
types = { package = "corepc-types", version = "0.5.0", default-features = false, features = [] }
2626
log = "0.4"
2727
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2828
serde_json = { version = "1.0.117" }

integration_test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ TODO = [] # This is a dirty hack while writing the tests.
5050

5151
[dependencies]
5252
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
53-
client = { package = "corepc-client", version = "0.4.0", default-features = false, features = ["client-sync"] }
54-
node = { package = "corepc-node", version = "0.4.0", default-features = false, features = [] }
53+
client = { package = "corepc-client", version = "0.5.0", default-features = false, features = ["client-sync"] }
54+
node = { package = "corepc-node", version = "0.5.0", default-features = false, features = [] }
5555
rand = "0.8.5"
5656
env_logger = "0.9.0"
5757

node/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.5.0 - 2024-12-16
2+
3+
- Rename `BitcoinD` to `Node`
4+
- Add support for Bitcoin Core v27.2
5+
16
# 0.4.0 - 2024-11-14
27

38
- Add support for Bitcoin Core v28

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-node"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "MIT"
66
repository = "https://github.com/rust-bitcoin/corepc"
@@ -13,7 +13,7 @@ rust-version = "1.63.0"
1313
exclude = ["tests", "contrib"]
1414

1515
[dependencies]
16-
corepc-client = { version = "0.4", features = ["client-sync"] }
16+
corepc-client = { version = "0.5.0", features = ["client-sync"] }
1717
log = "0.4"
1818
which = "4.2.5"
1919
anyhow = "1.0.66"

types/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Unreleased
1+
# 0.5.0 - 2024-12-16
22

3-
- Flesh out v17 and v18.
4-
- Rename `corepc-node::BitcoinD` to `Node`.
3+
- Flesh out v17 and v18
4+
- Re-write docs and verify correctness of status claims
55

66
# 0.4.0 - 2024-11-14
77

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corepc-types"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/corepc"

0 commit comments

Comments
 (0)