From d94b8f87a3d1e5a24d1f0f093a446456fa0d0325 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sat, 27 Mar 2021 01:21:34 -0700 Subject: [PATCH 1/4] Pin hyper version to =0.14.4 --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 2ec8b94e..c86698f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,6 +35,8 @@ tiny-bip39 = { version = "^0.8", optional = true } # Platform-specific dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { version = "1", features = ["rt"] } +# pin hyper version to prevent update to socket2 0.4.0 which isn't supported for MSRV 1.45.0 +hyper = { version = "=0.14.4" } [target.'cfg(target_arch = "wasm32")'.dependencies] async-trait = "0.1" From 07e79f6e8af41ac9f3c9107874062c0c7786ddd3 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Mon, 29 Mar 2021 18:27:47 +0200 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec33164f..e2c0b629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.5.1] - [v0.5.0] + +### Misc +#### Changed +- Pin `hyper` to `=0.14.4` to make it compile on Rust 1.45 + ## [v0.5.0] - [v0.4.0] ### Misc @@ -293,3 +299,4 @@ final transaction is created by calling `finish` on the builder. [v0.3.0]: https://github.com/bitcoindevkit/bdk/compare/v0.2.0...v0.3.0 [v0.4.0]: https://github.com/bitcoindevkit/bdk/compare/v0.3.0...v0.4.0 [v0.5.0]: https://github.com/bitcoindevkit/bdk/compare/v0.4.0...v0.5.0 +[v0.5.1]: https://github.com/bitcoindevkit/bdk/compare/v0.5.0...v0.5.1 From a3e45358def1a482a21769486bd755c02ea92cef Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Mon, 29 Mar 2021 10:16:17 +0200 Subject: [PATCH 3/4] Bump version to 0.5.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c86698f4..98bcf4ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.5.1-dev" +version = "0.5.1" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org" From f1f844a5b628bd5842a0e3aa658cf6d3ed860ffd Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Mon, 29 Mar 2021 19:10:47 +0200 Subject: [PATCH 4/4] Bump version to 0.5.2-dev --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 98bcf4ce..441fbb3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk" -version = "0.5.1" +version = "0.5.2-dev" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] homepage = "https://bitcoindevkit.org"