Skip to content

Commit efb1804

Browse files
authored
Release 0.0.8 (#39)
1 parent 8a0101e commit efb1804

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
Changelog
22
=========
33

4-
[0.0.7](https://github.com/raphjaph/bip322/releases/tag/0.0.7) - 2024-08-26
4+
[0.0.8](https://github.com/rust-bitcoin/bip322/releases/tag/0.0.8) - 2024-10-18
55
---------------------------------------------------------------------------
66

77
### Added
8+
- Update rust-bitcoin (#38)
9+
- Add rust-bitcoin CI (#37)
10+
- Add MSRV for 1.63 (#34)
11+
12+
[0.0.7](https://github.com/raphjaph/bip322/releases/tag/0.0.7) - 2024-08-26
13+
---------------------------------------------------------------------------
814

15+
### Added
916
- Sign and verify P2SH-P2WPKH (#32)
1017
- Add util module (#30)
1118

1219
[0.0.6](https://github.com/raphjaph/bip322/releases/tag/0.0.6) - 2024-08-22
1320
---------------------------------------------------------------------------
1421

1522
### Added
16-
1723
- Sign and verify P2WPKH (#26)
1824
- Tweak README (#23)
1925

Cargo-minimal.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d"
3232

3333
[[package]]
3434
name = "bip322"
35-
version = "0.0.7"
35+
version = "0.0.8"
3636
dependencies = [
3737
"base64",
3838
"bitcoin",

Cargo-recent.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d"
3232

3333
[[package]]
3434
name = "bip322"
35-
version = "0.0.7"
35+
version = "0.0.8"
3636
dependencies = [
3737
"base64",
3838
"bitcoin",

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "bip322"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
edition = "2021"
55
description = "Implements BIP322 generic message signing and verification"
66
license = "CC0-1.0"
77
homepage = "https://bip322.rs"
8-
repository = "https://github.com/raphjaph/bip322"
8+
repository = "https://github.com/rust-bitcoin/bip322"
99
rust-version = "1.63"
1010

1111
[features]

www/Cargo.lock

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
crate-type = ["cdylib"]
88

99
[dependencies]
10-
bip322 = "0.0.7"
10+
bip322 = { version = "0.0.8", path = "../" }
1111
bitcoin = "0.32.3"
1212
wasm-bindgen = "0.2.95"
1313

0 commit comments

Comments
 (0)