Skip to content

Commit 822ce5e

Browse files
committed
Merge #2075: chore(ci): pin proptest to 1.8.0 on 1.75.0 MSRV
62ce876 chore(ci): pin `openssl-sys` to `0.9.109` (Leonardo Lima) 37b2d0c chore(ci): pin `openssl` to `0.10.73` (Leonardo Lima) f4cb601 chore(ci): pin `syn` to `2.0.106` (Leonardo Lima) 0920b05 chore(ci): pin `quote` to `1.0.41` (Leonardo Lima) 3bc7a9a chore(ci): pin `[email protected]` instead of `0.6.0` (Leonardo Lima) 00590bf chore(ci): pin `[email protected]` instead of `1.0.3` (Leonardo Lima) bed41fa chore(ci): pin `proptest` to `1.8.0` on `1.75.0` MSRV (Leonardo Lima) Pull request description: ### Description The `proptest` dependency is used in `bdk_chain`, it's already pinned to `1.2.0` on `1.63.0` MSRV, and wasn't a problem on the `1.75.0` MSRV. Recently, it also released a new version, bumping their MSRV, on `proptest 1.9.0`. It adds a new step to pin it to `1.8.0` on the `1.75.0` MSRV CI step. edit: I also had to update the pinned version `[email protected]` and `[email protected]`. ### Notes to the reviewers It only applies to `release/chain-0.23.x` branch; the master is already on `1.85.0` MSRV, which is not affected. ### Changelog notice ``` ### Changed - deps: pin `proptest` to `1.8.0` on `1.75.0` MSRV # all the pinned dependencies below affect only the `1.63.0` MSRV - deps: pin `openssl` to `0.10.73` - deps: pin `openssl-sys` to `0.9.109` - deps: pin `syn` to `2.0.106` - deps: pin `quote` to `1.0.41` - deps: pin `[email protected]` instead of `0.6.0` - deps: pin `[email protected]` instead of `1.0.3` ``` ### Checklists #### All Submissions: * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) ACKs for top commit: ValuedMammal: ACK 62ce876 No need to squash IMO. luisschwab: ACK 62ce876 Tree-SHA512: 6c6697cc5b517825dfde1ea717bfed5ffef724b3a9de62caf9e63c591a269092e6e422946d3f971f1e91a00d6875776d60063764d28312e3c98faaf679f16ec7
2 parents 5ffad18 + 62ce876 commit 822ce5e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
cargo update -p rayon --precise "1.10.0"
5858
cargo update -p rayon-core --precise "1.12.1"
5959
cargo update -p time --precise "0.3.41"
60+
cargo update -p proptest --precise "1.8.0"
6061
- name: Pin dependencies for MSRV
6162
if: matrix.rust.version == '1.63.0'
6263
run: ./ci/pin-msrv.sh

ci/pin-msrv.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ cargo update -p once_cell --precise "1.20.3"
2828
cargo update -p base64ct --precise "1.6.0"
2929
cargo update -p minreq --precise "2.13.2"
3030
cargo update -p tracing-core --precise "0.1.33"
31-
cargo update -p [email protected].3 --precise "1.0.1"
31+
cargo update -p [email protected].4 --precise "1.0.1"
3232
cargo update -p rayon --precise "1.10.0"
3333
cargo update -p rayon-core --precise "1.12.1"
34-
cargo update -p [email protected] --precise "0.5.10"
34+
cargo update -p [email protected] --precise "0.5.10"
35+
cargo update -p quote --precise "1.0.41"
36+
cargo update -p syn --precise "2.0.106"
37+
cargo update -p openssl --precise "0.10.73"
38+
cargo update -p openssl-sys --precise "0.9.109"

0 commit comments

Comments
 (0)