Skip to content

Commit 53ba2b2

Browse files
committed
jsonrpc: Bump version to 0.19.0
In preparation for release bump the version number, add a changelog entry, and update the lock files.
1 parent e349d8c commit 53ba2b2

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ dependencies = [
448448

449449
[[package]]
450450
name = "jsonrpc"
451-
version = "0.18.0"
451+
version = "0.19.0"
452452
dependencies = [
453453
"base64 0.22.1",
454454
"bitreq",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ dependencies = [
453453

454454
[[package]]
455455
name = "jsonrpc"
456-
version = "0.18.0"
456+
version = "0.19.0"
457457
dependencies = [
458458
"base64 0.22.1",
459459
"bitreq",

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ serde = { version = "1.0.103", default-features = false, features = [ "derive",
2727
serde_json = { version = "1.0.117" }
2828
types = { package = "corepc-types", version = "0.10.0", path = "../types", default-features = false, features = ["std"] }
2929

30-
jsonrpc = { version = "0.18.0", path = "../jsonrpc", features = ["bitreq_http"], optional = true }
30+
jsonrpc = { version = "0.19.0", path = "../jsonrpc", features = ["bitreq_http"], optional = true }
3131

3232
[dev-dependencies]

client/src/client_sync/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ macro_rules! define_jsonrpc_bitreq_client {
8383
pub fn new(url: &str) -> Self {
8484
let transport = jsonrpc::http::bitreq_http::Builder::new()
8585
.url(url)
86-
.expect("jsonrpc v0.18, this function does not error")
86+
.expect("jsonrpc v0.19, this function does not error")
8787
.timeout(std::time::Duration::from_secs(60))
8888
.build();
8989
let inner = jsonrpc::client::Client::with_transport(transport);
@@ -100,7 +100,7 @@ macro_rules! define_jsonrpc_bitreq_client {
100100

101101
let transport = jsonrpc::http::bitreq_http::Builder::new()
102102
.url(url)
103-
.expect("jsonrpc v0.18, this function does not error")
103+
.expect("jsonrpc v0.19, this function does not error")
104104
.timeout(std::time::Duration::from_secs(60))
105105
.basic_auth(user.unwrap(), pass)
106106
.build();

jsonrpc/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.19.0 - 2025-10-31
2+
3+
* Depend on `bitreq` [399](https://github.com/rust-bitcoin/corepc/pull/399)
4+
* Update MSRV to Rust `v1.75.0` [#405](https://github.com/rust-bitcoin/corepc/pull/405/)
5+
16
# 0.18.0 - 2024-04-12
27

38
* simple_http: throw a specific error when transfer encoding is chunked

jsonrpc/Cargo.toml

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

0 commit comments

Comments
 (0)