]> Untitled Git - bdk-cli/commitdiff
Update MSRV to 1.56.0, Stable to 1.60.0 github/release/0.5 v0.5.0
authorSteve Myers <steve@notmandatory.org>
Tue, 24 May 2022 15:54:51 +0000 (08:54 -0700)
committerSteve Myers <steve@notmandatory.org>
Tue, 24 May 2022 16:02:56 +0000 (09:02 -0700)
.github/workflows/cont_integration.yml
CHANGELOG.md
build.rs

index 754f52ade501faf6a66d622a06876029fb8f0d11..60d69052c77ed22d1dac7e2f4999f7f7c852be88 100644 (file)
@@ -10,8 +10,8 @@ jobs:
     strategy:
       matrix:
         rust:
-          - 1.56.1 # STABLE
-          - 1.46.0 # MSRV
+          - 1.60.0 # STABLE
+          - 1.56.0 # MSRV
         features:
           - default
           - electrum
index 98f49f1c701204640231ef71d5ee37461d1cc896..0fb4ff9b42b91e4930d527dc45caaffdd3f4cb77 100644 (file)
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - Add experimental `regtest-*` features to automatically deploy local regtest nodes
 (bitcoind, and electrs) while running cli commands.
 - Put cached wallet data in separate directories: ~/.bdk-bitcoin/<wallet_name>
+- New MSRV set to `1.56`
 
 ## [0.4.0]
 
index da76003bb93952a53520b1b4db1b98fd2db0fed3..3a5bf28081971103a5b6eb1b311a8426bacddb18 100644 (file)
--- a/build.rs
+++ b/build.rs
@@ -22,8 +22,7 @@ fn main() {
 
     let database_features: Vec<String> = vec![key_value_db, sqlite_db]
         .iter()
-        .map(|f| f.to_owned())
-        .flatten()
+        .filter_map(|f| f.to_owned())
         .collect();
 
     if database_features.len() > 1 {