Skip to content

Commit 4c5d3b2

Browse files
committed
Bump versions to 0.5.0
In preparation for releasing all three crates bump the version, add a changlog entry, and update the lock files.
1 parent 4fdea9c commit 4c5d3b2

File tree

9 files changed

+24
-13
lines changed

9 files changed

+24
-13
lines changed

Cargo-minimal.lock

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

121121
[[package]]
122122
name = "corepc-client"
123-
version = "0.4.0"
123+
version = "0.5.0"
124124
dependencies = [
125125
"bitcoin",
126126
"corepc-types",
@@ -132,7 +132,7 @@ dependencies = [
132132

133133
[[package]]
134134
name = "corepc-types"
135-
version = "0.4.0"
135+
version = "0.5.0"
136136
dependencies = [
137137
"bitcoin",
138138
"bitcoin-internals",

Cargo-recent.lock

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

121121
[[package]]
122122
name = "corepc-client"
123-
version = "0.4.0"
123+
version = "0.5.0"
124124
dependencies = [
125125
"bitcoin",
126126
"corepc-types",
@@ -132,7 +132,7 @@ dependencies = [
132132

133133
[[package]]
134134
name = "corepc-types"
135-
version = "0.4.0"
135+
version = "0.5.0"
136136
dependencies = [
137137
"bitcoin",
138138
"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-06
2+
3+
- Add support for Bitcoin Core v27.2
4+
- Add a bunch more methods to the `Client`
5+
- Flesh out 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
@@ -57,8 +57,8 @@ TODO = [] # This is a dirty hack while writing the tests.
5757

5858
[dependencies]
5959
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
60-
client = { package = "corepc-client", version = "0.4.0", default-features = false, features = ["client-sync"] }
61-
node = { package = "corepc-node", version = "0.4.0", default-features = false, features = [] }
60+
client = { package = "corepc-client", version = "0.5.0", default-features = false, features = ["client-sync"] }
61+
node = { package = "corepc-node", version = "0.5.0", default-features = false, features = [] }
6262
rand = "0.8.5"
6363
env_logger = "0.9.0"
6464

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-06
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: 1 addition & 1 deletion
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"

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-06
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)