Skip to content

Commit

Permalink
v0.2.0-alpha.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 28, 2020
1 parent 45ddc47 commit 5b78580
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

v0.2.0-alpha.2
--------------

- Enterprise system bus service type with peer addressing
- Complete set of LN peer messages from BOLT-1 and BOLT-2
- Improved logging and error handling
- Improved LNP node address conversions

v0.2.0-alpha.1
--------------

Expand Down
49 changes: 45 additions & 4 deletions 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
Expand Up @@ -37,7 +37,7 @@ crate-type = ["dylib", "rlib", "staticlib"]
chacha20poly1305 = "~0.7.0"
amplify = { version = "~2.0.6", features = ["stringly_conversions"] }
amplify_derive = "~2.0.6"
lnpbp_derive = { path = "./derive" }
lnpbp_derive = "~0.2.0-alpha.2"
# Dependencies on core rust-bitcoin ecosystem projects
# ----------------------------------------------------
bitcoin = { version = "~0.25.1", features = ["rand"] }
Expand Down
4 changes: 2 additions & 2 deletions services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ edition = "2018"
# LNP/BP libraries
amplify = "~2.0.6"
amplify_derive = "~2.0.6"
lnpbp = { path = ".." }
lnpbp_derive = { path = "../derive" }
lnpbp = "~0.2.0-alpha.2"
lnpbp_derive = "~0.2.0-alpha.2"
# Serialization & parsing
serde_crate = { package = "serde", version = "~1.0.106", features = ["derive"], optional = true }
serde_with = { version = "~1.5.1", optional = true, features = ["hex"] }
Expand Down
2 changes: 2 additions & 0 deletions src/lnp/session/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,12 +236,14 @@ mod test {
zmqsocket::ApiType::Server,
&locator,
None,
None,
)
.unwrap();
let mut tx = Raw::with_zmq_unencrypted(
zmqsocket::ApiType::Client,
&locator,
None,
None,
)
.unwrap();

Expand Down

0 comments on commit 5b78580

Please sign in to comment.