From 9a7cc14c94f2587a8a794900dea2ba5665c4aa04 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 28 Jun 2023 07:56:21 +1000 Subject: [PATCH 1/2] Update rustls dependency to version 0.21 Update to the latest version of `rustls`. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d62030b..2b332ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ serde_json = { version = "^1.0" } # Optional dependencies openssl = { version = "0.10", optional = true } -rustls = { version = "0.20", optional = true, features = ["dangerous_configuration"] } +rustls = { version = "0.21", optional = true, features = ["dangerous_configuration"] } webpki = { version = "0.22", optional = true } webpki-roots = { version = "0.22", optional = true } From f5a438cd0a5b68b3f74d3c144e90e2b099c21261 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 28 Jun 2023 07:57:25 +1000 Subject: [PATCH 2/2] Bump version to 0.16.0 We just updated the rustls dependency, in order for downstream crates to take advantage of this change bump the version so we can release. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2b332ef..da8e666 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "electrum-client" -version = "0.15.1" +version = "0.16.0" authors = ["Alekos Filini "] license = "MIT" homepage = "https://github.com/MagicalBitcoin/rust-electrum-client"