Skip to content

Commit

Permalink
Bump version to 0.19.0
Browse files Browse the repository at this point in the history
In preparation for release add a changelog entry and bump the version
number.
  • Loading branch information
tcharding committed May 14, 2024
1 parent 1c60b52 commit 839fcb6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Unreleased

- MSRV changed from 1.48.0 to 1.56.1
# 0.19.0

- Change MSRV from 1.48.0 to 1.56.1 [#334](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/334)
- Implement `verifymessage` RCP call (and add "verifymessage" feature)
- [#326](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/326)
- [#343](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/343)
- Upgrade `bitcoin` dependency to `v0.32.0` [#337](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/337)
- Upgrade `jsonrpc` dependency to `v0.18.0` [#339](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/339)
- Use `jsonrpc` "minreq_http" feature [#341](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/341)
- Add "rand" feature [#342](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/342)

# 0.18.0

Expand Down
4 changes: 2 additions & 2 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ dependencies = [

[[package]]
name = "bitcoincore-rpc"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"bitcoincore-rpc-json",
"jsonrpc",
Expand All @@ -104,7 +104,7 @@ dependencies = [

[[package]]
name = "bitcoincore-rpc-json"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"bitcoin",
"serde",
Expand Down
4 changes: 2 additions & 2 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ dependencies = [

[[package]]
name = "bitcoincore-rpc"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"bitcoincore-rpc-json",
"jsonrpc",
Expand All @@ -104,7 +104,7 @@ dependencies = [

[[package]]
name = "bitcoincore-rpc-json"
version = "0.18.0"
version = "0.19.0"
dependencies = [
"bitcoin",
"serde",
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 = "bitcoincore-rpc"
version = "0.18.0"
version = "0.19.0"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand All @@ -23,7 +23,7 @@ default = ["rand"]
rand = ["bitcoincore-rpc-json/rand"]

[dependencies]
bitcoincore-rpc-json = { version = "0.18.0", path = "../json" }
bitcoincore-rpc-json = { version = "0.19.0", path = "../json" }

log = "0.4.5"
jsonrpc = { version = "0.18.0", features = ["minreq_http"] }
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 = "bitcoincore-rpc-json"
version = "0.18.0"
version = "0.19.0"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand Down

0 comments on commit 839fcb6

Please sign in to comment.