Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

[0.0.11](https://github.com/rust-bitcoin/bip322/releases/tag/0.0.11) - 2026-08-02
---------------------------------------------------------------------------------

### Added
- Implement full proof of funds support (#67)
- Implement `P2PKH` support and legacy signing method (#66)
- Accept ECDSA signatures shorter than 71 bytes (#69)
- Add multisig support (#65)

### Changed
- Update MSRV to 1.74 (#79)

[0.0.10](https://github.com/rust-bitcoin/bip322/releases/tag/0.0.10) - 2025-09-05
---------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f"

[[package]]
name = "bip322"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"base64",
"bitcoin",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f"

[[package]]
name = "bip322"
version = "0.0.10"
version = "0.0.11"
dependencies = [
"base64",
"bitcoin",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip322"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
description = "Implements BIP322 generic message signing and verification"
license = "CC0-1.0"
Expand Down
Loading