Skip to content

Commit 9c9e7a5

Browse files
committed
Merge #116: fix(ci): pin native-tls to 0.2.13 and flate2 to 1.0.35
84161ba fix(ci): pint `flate2` to `1.0.35` (Leonardo Lima) 1aeb466 fix(ci): pin `native-tls` to `0.2.13` (Leonardo Lima) Pull request description: <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description In the latest `native-tls` release [`0.2.14`](https://github.com/sfackler/rust-native-tls/releases/tag/v0.2.14) it's bumped their MSRV version to `1.80.0`. It's not a direct dependency, however, it comes as a transitive dependency from `reqwest`. Alongside that, the `flate2` dependency also bumped their MSRV to `1.67.0` which also requires pinning its version to `1.0.35`. This PR pins on CI both the `native-tls` to `0.2.13`, and `flate2` to `1.0.35`, and updates the instruction on `README.md` in order to properly build on MSRV. <!-- Describe the purpose of this PR, what's being adding and/or fixed --> ### Notes to the reviewers <!-- In this section you can include notes directed to the reviewers, like explaining why some parts of the PR were done in a specific way --> ### Changelog notice - Adds `native-tls 0.2.13` to MSRV pinning step on CI. - Adds `flate2 1.0.35` to MSRV pinning step on CI. <!-- Notice the release manager should include in the release tag message changelog --> <!-- See https://keepachangelog.com/en/1.0.0/ for examples --> ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing <!-- #### New Features: * [ ] I've added tests for the new feature * [ ] I've added docs for the new feature #### Bugfixes: * [ ] This pull request breaks the existing API * [ ] I've added tests to reproduce the issue which are now passing * [ ] I'm linking the issue being fixed by this PR --> ACKs for top commit: ValuedMammal: ACK 84161ba Tree-SHA512: 2b092afb8cd673e66cf7443ebbc21da1bbb4aaa0a7913374b09eb1d2fd91a2eaab5ce2a4367d987f8b866da82c3cd985b1638c0d6d8cab61bcf68087a3ae12b8
2 parents 8f49c84 + 84161ba commit 9c9e7a5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/cont_integration.yml

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
cargo update -p tokio-util --precise "0.7.11"
6363
cargo update -p indexmap --precise "2.5.0"
6464
cargo update -p security-framework-sys --precise "2.11.1"
65+
cargo update -p native-tls --precise "0.2.13"
66+
cargo update -p flate2 --precise "1.0.35"
6567
- name: Build
6668
run: cargo build --features ${{ matrix.features }} --no-default-features
6769
- name: Test

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ cargo update -p tokio --precise "1.38.1"
2727
cargo update -p tokio-util --precise "0.7.11"
2828
cargo update -p indexmap --precise "2.5.0"
2929
cargo update -p security-framework-sys --precise "2.11.1"
30+
cargo update -p native-tls --precise "0.2.13"
31+
cargo update -p flate2 --precise "1.0.35"
3032
```

0 commit comments

Comments
 (0)