From d411cec098a84afa977e4d669a29925fd53e39f7 Mon Sep 17 00:00:00 2001 From: "Leonardo L." Date: Tue, 21 Jan 2025 16:50:30 -0300 Subject: [PATCH] chore: fix punctuation and use `rustup override set` instead - fix some nits and punctuation typos. - recommend usage of `rustup override set` instead of `rustup default` command. Co-authored-by: Steve Myers --- README.md | 4 ++-- ci/pin-msrv.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5ed54e97b..c6c212f1f 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Fully working examples of how to use these components are in `/example-crates`: [`bdk_chain`]: https://docs.rs/bdk-chain/ ## Minimum Supported Rust Version (MSRV) -The BDK library maintains a MSRV of 1.63.0. This includes the following crates +The BDK library maintains a MSRV of 1.63.0. This includes the following crates: - `bdk_core` - `bdk_chain` @@ -73,7 +73,7 @@ The BDK library maintains a MSRV of 1.63.0. This includes the following crates The MSRV of `bdk_electrum` is 1.75.0. -To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script +To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script. ## License diff --git a/ci/pin-msrv.sh b/ci/pin-msrv.sh index 07454d589..214ab649d 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -8,7 +8,7 @@ set -euo pipefail # To pin deps, switch toolchain to MSRV and execute the below updates # cargo clean -# rustup default 1.63.0 +# rustup override set 1.63.0 cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5" cargo update -p time --precise "0.3.20"