File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
matrix :
12
12
rust :
13
- - 1.56.1 # STABLE
14
- - 1.46 .0 # MSRV
13
+ - 1.60.0 # STABLE
14
+ - 1.56 .0 # MSRV
15
15
features :
16
16
- default
17
17
- electrum
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
- Add experimental ` regtest-* ` features to automatically deploy local regtest nodes
17
17
(bitcoind, and electrs) while running cli commands.
18
18
- Put cached wallet data in separate directories: ~ /.bdk-bitcoin/<wallet_name>
19
+ - New MSRV set to ` 1.56 `
19
20
20
21
## [ 0.4.0]
21
22
Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ fn main() {
22
22
23
23
let database_features: Vec < String > = vec ! [ key_value_db, sqlite_db]
24
24
. iter ( )
25
- . map ( |f| f. to_owned ( ) )
26
- . flatten ( )
25
+ . filter_map ( |f| f. to_owned ( ) )
27
26
. collect ( ) ;
28
27
29
28
if database_features. len ( ) > 1 {
You can’t perform that action at this time.
0 commit comments