Skip to content

Commit

Permalink
v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 9, 2020
1 parent 3999313 commit e9e7233
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
==========

v0.2.0
------
No changes since RC2

### Changes since v0.1
- Epic: refactoring of LNP protocols and services crate
- Epic: initial implementation of generalized lightning network
- Epic: lightning network specific encodings and derives
- CI covering different mobile & desktop targets

v0.2.0-rc.2
-----------
- New tagged hash implementation defaulting to Bech32 encoding for ContractId
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp"
version = "0.2.0-rc.2"
version = "0.2.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP/BP Core Library implementing LNPBP specifications & standards"
Expand Down Expand Up @@ -36,7 +36,7 @@ crate-type = ["dylib", "rlib", "staticlib"]
# -----------------------------------------
amplify = { version = "2.4", features = ["stringly_conversions"] }
amplify_derive = "2.4.1"
lnpbp_derive = { version = "=0.2.0-rc.2", path = "./derive" }
lnpbp_derive = { version = "~0.2.0", path = "./derive" }
# Dependencies on core rust-bitcoin ecosystem projects
# ----------------------------------------------------
bitcoin = { version = "~0.25.1", features = ["rand"] }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_derive"
version = "0.2.0-rc.2"
version = "0.2.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP/BP Core Library derive macros"
Expand Down
6 changes: 3 additions & 3 deletions services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_services"
version = "0.2.0-rc.2"
version = "0.2.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP/BP support crate for devloping microservices"
Expand All @@ -14,8 +14,8 @@ edition = "2018"
# LNP/BP libraries
amplify = "2.4"
amplify_derive = "2.4"
lnpbp = { version = "=0.2.0-rc.2", path = ".." }
lnpbp_derive = { version = "=0.2.0-rc.2", path = "../derive" }
lnpbp = { version = "~0.2.0", path = ".." }
lnpbp_derive = { version = "~0.2.0", path = "../derive" }
# 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
4 changes: 3 additions & 1 deletion src/bp/dbc/txout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ impl Container for TxoutContainer {
}

/// [bitcoin::TxOut] containing LNPBP-2 commitment
#[derive(Wrapper, Clone, PartialEq, Eq, Hash, Default, Debug, Display, From)]
#[derive(
Wrapper, Clone, PartialEq, Eq, Hash, Default, Debug, Display, From,
)]
#[display(Debug)]
pub struct TxoutCommitment(TxOut);

Expand Down

0 comments on commit e9e7233

Please sign in to comment.