Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release tracking PR: v0.19.0 #345

Merged
merged 2 commits into from
May 14, 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
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
11 changes: 0 additions & 11 deletions client/CHANGELOG.md

This file was deleted.

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
Loading