Skip to content

Commit 367697c

Browse files
committed
v0.3.0 release
1 parent 047a688 commit 367697c

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
==========
33

4+
v0.3.0
5+
------
6+
- LNP Core Library is extracted and externalized from LNP/BP Core Library
7+
- Internet2-related modules externalized and removed from this repository
8+
- BOLT-7 message types implementation
9+
- Initial work on HTLC extension
10+
- Strict encoding for message types
11+
- Rust bitcoin 0.26 & Miniscript 5.0 migration
12+
413
v0.3.0-beta.4
514
-------------
615
- Strict encoding for message types

Cargo.lock

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

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnp-core"
3-
version = "0.3.0-beta.4"
3+
version = "0.3.0"
44
license = "MIT"
55
authors = ["Dr Maxim Orlovsky <[email protected]>"]
66
description = "LNP Core Library: rust implementation of modular lightning channels architecture"
@@ -21,9 +21,9 @@ crate-type = ["rlib", "staticlib"]
2121
amplify = { version = "3", features = ["stringly_conversions"] }
2222
amplify_derive = "2.4.3"
2323
lnpbp = "0.3"
24-
rgb-core = { version = "0.3.0-beta.3", optional = true }
24+
rgb-core = { version = "0.3", optional = true }
2525
strict_encoding = "1"
26-
descriptor-wallet = "0.3.2"
26+
descriptor-wallet = { version = "0.3.3", features = ["keygen"] }
2727
bitcoin = { version = "0.26", features = ["rand"] }
2828
internet2 = { version = "0.3.6", features = ["bitcoin-ext", "lnpbp"] }
2929
serde_crate = { package = "serde", version = "1.0", features = ["derive"], optional = true }

src/payment/types.rs

-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ impl FromHex for TempChannelId {
296296
}
297297

298298
impl TempChannelId {
299-
#[cfg(feature = "keygen")]
300299
pub fn random() -> Self {
301300
TempChannelId::from_inner(Slice32::random())
302301
}

0 commit comments

Comments
 (0)