Skip to content

Commit 80260e1

Browse files
committed
Update MSRV to 1.56.0, Stable to 1.60.0
1 parent c1daa3f commit 80260e1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
matrix:
1212
rust:
13-
- 1.56.1 # STABLE
14-
- 1.46.0 # MSRV
13+
- 1.60.0 # STABLE
14+
- 1.56.0 # MSRV
1515
features:
1616
- default
1717
- electrum

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Add experimental `regtest-*` features to automatically deploy local regtest nodes
1717
(bitcoind, and electrs) while running cli commands.
1818
- Put cached wallet data in separate directories: ~/.bdk-bitcoin/<wallet_name>
19+
- New MSRV set to `1.56`
1920

2021
## [0.4.0]
2122

build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ fn main() {
2222

2323
let database_features: Vec<String> = vec![key_value_db, sqlite_db]
2424
.iter()
25-
.map(|f| f.to_owned())
26-
.flatten()
25+
.filter_map(|f| f.to_owned())
2726
.collect();
2827

2928
if database_features.len() > 1 {

0 commit comments

Comments
 (0)