Skip to content

Commit a46aa9d

Browse files
committed
Merge #211: chore(ci): remove MSRV for bdk-cli
126d98b ci(remove-msrv): remove msrv for the crate (Vihiga Tyonum) Pull request description: This PR fixes #210 <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description - Updates Rust Edition to 2024 - Removes MSRV for the project - fixes clippy warnings <!-- Describe the purpose of this PR, what's being adding and/or fixed --> <!-- 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 --> <!-- 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-cli/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing #### Bugfixes: * [ ] This pull request breaks the existing API * [ ] I've added tests to reproduce the issue which are now passing * [x] I'm linking the issue being fixed by this PR ### New Features: * [ ] I've added tests for the new feature * [x] I've added docs for the new feature * [x] I've updated `CHANGELOG.md` ACKs for top commit: notmandatory: ACK 126d98b Tree-SHA512: cc8109103dac6a669b8cef63939c4fd7bf52ac24985f96b6e7bcae138113dcbf902d12bf46cca3c1b83f1fce28cf9ac8b782a1b07ddd32ed8b7d9447325b0b99
2 parents 7a71b14 + 126d98b commit a46aa9d

File tree

11 files changed

+207
-253
lines changed

11 files changed

+207
-253
lines changed

.github/workflows/cont_integration.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
matrix:
1212
rust:
1313
- stable # STABLE
14-
- 1.75.0 # MSRV
1514
features:
1615
- --features default
1716
- --no-default-features
@@ -36,14 +35,6 @@ jobs:
3635
profile: minimal
3736
override: true
3837
components: rustfmt, clippy
39-
- name: If Rust 1.75 remove and update Cargo.lock
40-
if: matrix.rust == '1.75.0'
41-
run: |
42-
rm Cargo.lock
43-
cargo update
44-
- name: If Rust 1.75 pin dependencies
45-
if: matrix.rust == '1.75.0'
46-
run: ./ci/pin-msrv.sh
4738
- name: Build
4839
run: cargo build ${{ matrix.features }}
4940
- name: Clippy

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ page. See [DEVELOPMENT_CYCLE.md](DEVELOPMENT_CYCLE.md) for more details.
55

66
## [Unreleased]
77

8+
- Removed MSRV and bumped Rust Edition to 2024
9+
810
## [1.0.0]
911

1012
- Changed the MSRV to 1.75.0 and bumped the rust edition to 2021

0 commit comments

Comments
 (0)