Skip to content

Commit 06a6c15

Browse files
committed
Merge rust-bitcoin#345: Release tracking PR: v0.19.0
839fcb6 Bump version to 0.19.0 (Tobin C. Harding) 1c60b52 client: Remove stale changelog file (Tobin C. Harding) Pull request description: In preparation for release add a changelog entry and bump the version number. Patch 1 is a trivial cleanup of an old stale changelog file, no longer used. ACKs for top commit: apoelstra: ACK 839fcb6 Tree-SHA512: 445c71f7b5c763862d075a00cf85a0870f58accbe14fdf140e196dc8ec921fd20458996c1a23c688d9f743ccdf4f2c2e452381df8205bde8a89b6b5ed6bb82af
2 parents e1c6ec4 + 839fcb6 commit 06a6c15

File tree

6 files changed

+17
-21
lines changed

6 files changed

+17
-21
lines changed

CHANGELOG.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
# Unreleased
2-
3-
- MSRV changed from 1.48.0 to 1.56.1
1+
# 0.19.0
2+
3+
- Change MSRV from 1.48.0 to 1.56.1 [#334](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/334)
4+
- Implement `verifymessage` RCP call (and add "verifymessage" feature)
5+
- [#326](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/326)
6+
- [#343](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/343)
7+
- Upgrade `bitcoin` dependency to `v0.32.0` [#337](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/337)
8+
- Upgrade `jsonrpc` dependency to `v0.18.0` [#339](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/339)
9+
- Use `jsonrpc` "minreq_http" feature [#341](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/341)
10+
- Add "rand" feature [#342](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/342)
411

512
# 0.18.0
613

Cargo-minimal.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies = [
9292

9393
[[package]]
9494
name = "bitcoincore-rpc"
95-
version = "0.18.0"
95+
version = "0.19.0"
9696
dependencies = [
9797
"bitcoincore-rpc-json",
9898
"jsonrpc",
@@ -104,7 +104,7 @@ dependencies = [
104104

105105
[[package]]
106106
name = "bitcoincore-rpc-json"
107-
version = "0.18.0"
107+
version = "0.19.0"
108108
dependencies = [
109109
"bitcoin",
110110
"serde",

Cargo-recent.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies = [
9292

9393
[[package]]
9494
name = "bitcoincore-rpc"
95-
version = "0.18.0"
95+
version = "0.19.0"
9696
dependencies = [
9797
"bitcoincore-rpc-json",
9898
"jsonrpc",
@@ -104,7 +104,7 @@ dependencies = [
104104

105105
[[package]]
106106
name = "bitcoincore-rpc-json"
107-
version = "0.18.0"
107+
version = "0.19.0"
108108
dependencies = [
109109
"bitcoin",
110110
"serde",

client/CHANGELOG.md

-11
This file was deleted.

client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoincore-rpc"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = [
55
"Steven Roose <[email protected]>",
66
"Jean Pierre Dudey <[email protected]>",
@@ -23,7 +23,7 @@ default = ["rand"]
2323
rand = ["bitcoincore-rpc-json/rand"]
2424

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

2828
log = "0.4.5"
2929
jsonrpc = { version = "0.18.0", features = ["minreq_http"] }

json/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoincore-rpc-json"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = [
55
"Steven Roose <[email protected]>",
66
"Jean Pierre Dudey <[email protected]>",

0 commit comments

Comments
 (0)