Skip to content

Commit

Permalink
v0.2.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 6, 2020
1 parent d57a454 commit f5c1f7e
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Change Log
==========

v0.2.0-beta.2
-------------

### LNP module
- Noise handshake
- Abstract state channels
- Payment channels
- Channel extensibility framework
- BOLT3 transaction structure for payment channels
- Additional LN peer messages supporting RGB

### BP module
- Lexicographic orderings (BIP96) for transactions, PSBTs, inputs and outputs

v0.2.0-beta.1
-------------

Expand Down
51 changes: 47 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 @@ -36,7 +36,7 @@ crate-type = ["dylib", "rlib", "staticlib"]
# -----------------------------------------
amplify = { version = "~2.3.1", features = ["stringly_conversions"] }
amplify_derive = "~2.3.0"
lnpbp_derive = { path = "derive" }
lnpbp_derive = "~0.2.0-beta.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.3.1"
amplify_derive = "~2.3.0"
lnpbp = { path = ".." }
lnpbp_derive = { path = "../derive" }
lnpbp = "~0.2.0-beta.2"
lnpbp_derive = "~0.2.0-beta.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

0 comments on commit f5c1f7e

Please sign in to comment.