File tree Expand file tree Collapse file tree 6 files changed +31
-9
lines changed Expand file tree Collapse file tree 6 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 1+ # 0.2.0 - 2024-08-22
2+
3+ - Bump MSRV to Rust ` v1.63.0 ` [ #27 ] ( https://github.com/tcharding/rust-psbt/pull/27 )
4+ - Upgrade dependencies [ #26 ] ( https://github.com/tcharding/rust-psbt/pull/26 )
5+ - ` bitcoin v0.32.0 `
6+ - ` miniscript 12.2.0 `
7+
18# 0.1.1 - 2024-02-08
29
310Add various combinations of the three bips as keywords.
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ dependencies = [
195195
196196[[package]]
197197name = "psbt-v2"
198- version = "0.1.1 "
198+ version = "0.2.0 "
199199dependencies = [
200200 "anyhow",
201201 "bincode",
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ dependencies = [
195195
196196[[package]]
197197name = "psbt-v2"
198- version = "0.1.1 "
198+ version = "0.2.0 "
199199dependencies = [
200200 "anyhow",
201201 "bincode",
Original file line number Diff line number Diff line change 11[package ]
22name = " psbt-v2"
3- version = " 0.1.1 "
3+ version = " 0.2.0 "
44authors = [
" Tobin C. Harding <[email protected] >" ]
55license = " CC0-1.0"
66repository = " https://github.com/tcharding/rust-psbt/"
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ #
3+ # Update the minimal/recent lock file
4+
5+ set -euo pipefail
6+
7+ for file in Cargo-minimal.lock Cargo-recent.lock; do
8+ cp --force " $file " Cargo.lock
9+ cargo check
10+ cp --force Cargo.lock " $file "
11+ done
Original file line number Diff line number Diff line change @@ -16,12 +16,16 @@ test:
1616
1717# Lint everything.
1818lint :
19- cargo clippy --all --all-targets --all-features -- --deny warnings
19+ cargo + $(cat . / nightly-version) clippy --all-targets --all-features -- --deny warnings
2020
21- # Run the formatter
21+ # Run cargo fmt
2222fmt :
23- cargo + nightly fmt --all
23+ cargo + $(cat . / nightly-version) fmt --all
2424
25- # Check the formatting
26- format :
27- cargo + nightly fmt --all --check
25+ # Generate documentation.
26+ docsrs * flags :
27+ RUSTDOCFLAGS=" --cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links" cargo + $(cat ./ nightly-version) doc --all-features {{ flags}}
28+
29+ # Update the recent and minimal lock files.
30+ update-lock-files :
31+ contrib/ update-lock-files.sh
You can’t perform that action at this time.
0 commit comments