Skip to content

Commit c32f754

Browse files
authored
Merge pull request #30 from tcharding/08-22-release-0.2.0
Bump version to 0.2.0
2 parents a450827 + b5b1c2f commit c32f754

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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

310
Add various combinations of the three bips as keywords.

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ dependencies = [
195195

196196
[[package]]
197197
name = "psbt-v2"
198-
version = "0.1.1"
198+
version = "0.2.0"
199199
dependencies = [
200200
"anyhow",
201201
"bincode",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ dependencies = [
195195

196196
[[package]]
197197
name = "psbt-v2"
198-
version = "0.1.1"
198+
version = "0.2.0"
199199
dependencies = [
200200
"anyhow",
201201
"bincode",

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psbt-v2"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/tcharding/rust-psbt/"

contrib/update-lock-files.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

justfile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ test:
1616

1717
# Lint everything.
1818
lint:
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
2222
fmt:
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

0 commit comments

Comments
 (0)