Skip to content

Commit

Permalink
Release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Feb 6, 2023
1 parent 035ae25 commit 17de48c
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 80 deletions.
121 changes: 57 additions & 64 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnp-core"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP Core Library: rust implementation of modular lightning channels architecture"
Expand All @@ -19,13 +19,13 @@ path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]

[dependencies]
amplify = "3.13.0"
strict_encoding = "0.9.0-rc.2"
lightning_encoding = "0.9.0-rc.1"
bitcoin_scripts = "0.9.0-rc.1"
descriptor-wallet = { version = "0.9.0-rc.1", features = ["keygen"] }
lnp2p = { version = "0.9.0-rc.1", path = "lnp2p", default-features = false }
lnpbp = "0.9.0-rc.1"
amplify = "3.14.1"
strict_encoding = "0.9.0"
lightning_encoding = "0.9.0"
bitcoin_scripts = "0.9.0"
descriptor-wallet = { version = "0.9.0", features = ["keygen"] }
lnp2p = { version = "0.9.0", path = "lnp2p", default-features = false }
lnpbp = "0.9.0"
bitcoin = { version = "0.29.2", features = ["rand"] }
secp256k1 = { version = "0.24.2", features = ["global-context-less-secure"] }
internet2 = { version = "0.9.0-rc.1", default-features = false, features = ["keygen"] }
Expand Down
16 changes: 8 additions & 8 deletions lnp2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnp2p"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "MIT"
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LN P2P Library: rust implementation of lightning network peer protocols (BOLT and Bifrost)"
Expand All @@ -18,13 +18,13 @@ path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]

[dependencies]
amplify = { version = "3.13.0", features = ["hex", "rand"] }
lnpbp = "0.9.0-rc.1"
bp-core = "0.9.0-rc.1"
strict_encoding = { version = "0.9.0-rc.2", optional = true, features = ["chrono", "miniscript"] }
lightning_encoding = { version = "0.9.0-rc.1", optional = true }
bitcoin_scripts = "0.9.0-rc.1"
psbt = "0.9.0-rc.1"
amplify = { version = "3.14.1", features = ["hex", "rand"] }
lnpbp = "0.9.0"
bp-core = "0.9.0"
strict_encoding = { version = "0.9.0", optional = true, features = ["chrono", "miniscript"] }
lightning_encoding = { version = "0.9.0", optional = true }
bitcoin_scripts = "0.9.0"
psbt = "0.9.0"
miniscript = "9.0.0"
bitcoin = "0.29.2"
secp256k1 = { version = "0.24.2", features = ["global-context"] }
Expand Down

0 comments on commit 17de48c

Please sign in to comment.