Skip to content

Commit

Permalink
v0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jan 22, 2021
1 parent 047a688 commit 367697c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

v0.3.0
------
- LNP Core Library is extracted and externalized from LNP/BP Core Library
- Internet2-related modules externalized and removed from this repository
- BOLT-7 message types implementation
- Initial work on HTLC extension
- Strict encoding for message types
- Rust bitcoin 0.26 & Miniscript 5.0 migration

v0.3.0-beta.4
-------------
- Strict encoding for message types
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnp-core"
version = "0.3.0-beta.4"
version = "0.3.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP Core Library: rust implementation of modular lightning channels architecture"
Expand All @@ -21,9 +21,9 @@ crate-type = ["rlib", "staticlib"]
amplify = { version = "3", features = ["stringly_conversions"] }
amplify_derive = "2.4.3"
lnpbp = "0.3"
rgb-core = { version = "0.3.0-beta.3", optional = true }
rgb-core = { version = "0.3", optional = true }
strict_encoding = "1"
descriptor-wallet = "0.3.2"
descriptor-wallet = { version = "0.3.3", features = ["keygen"] }
bitcoin = { version = "0.26", features = ["rand"] }
internet2 = { version = "0.3.6", features = ["bitcoin-ext", "lnpbp"] }
serde_crate = { package = "serde", version = "1.0", features = ["derive"], optional = true }
Expand Down
1 change: 0 additions & 1 deletion src/payment/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,6 @@ impl FromHex for TempChannelId {
}

impl TempChannelId {
#[cfg(feature = "keygen")]
pub fn random() -> Self {
TempChannelId::from_inner(Slice32::random())
}
Expand Down

0 comments on commit 367697c

Please sign in to comment.