Skip to content

Commit

Permalink
v0.1.0-alpha.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 29, 2020
1 parent 092f3ca commit a54c690
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 26 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

v0.1.0-alpha.3
--------------

- Channel negotiation between nodes
- Reworked service buses
- Separated general service runtime functionality

v0.1.0-alpha.2
--------------

Expand Down
32 changes: 12 additions & 20 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lnp_node"
description = "LNP node"
version = "0.1.0-alpha.2"
version = "0.1.0-alpha.3"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rgb"]
Expand All @@ -25,9 +25,9 @@ required-features = ["cli"]
# Rust language
amplify = "~2.0.6"
amplify_derive = "~2.0.6"
lnpbp = { git = "https://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
lnpbp_derive = { git = "https://github.com/LNP-BP/rust-lnpbp" }
lnpbp_services = { git = "https://github.com/LNP-BP/rust-lnpbp" }
lnpbp = { version = "0.2.0-alpha.3", features = ["lnp", "url", "websockets"] }
lnpbp_derive = { version = "0.2.0-alpha.3" }
lnpbp_services = { version = "0.2.0-alpha.3" }
lazy_static = "~1.4.0"
nix = { version = "~0.19.0", optional = true }
# Bitcoin
Expand Down Expand Up @@ -59,8 +59,8 @@ zmq = { version = "~0.9.2", optional = true }
[build-dependencies]
amplify = "~1.2.0"
amplify_derive = "~2.0.6"
lnpbp = { git = "https://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
lnpbp_services = { git = "https://github.com/LNP-BP/rust-lnpbp" }
lnpbp = { version = "0.2.0-alpha.3", features = ["lnp", "url", "websockets"] }
lnpbp_services = { version = "0.2.0-alpha.3" }
clap = "=3.0.0-beta.2"
clap_generate = "=3.0.0-beta.2"
log = { version = "~0.4.8", features = ["max_level_trace", "release_max_level_debug"] }
Expand Down

0 comments on commit a54c690

Please sign in to comment.