Skip to content

Commit 17de48c

Browse files
committed
Release v0.9
1 parent 035ae25 commit 17de48c

File tree

3 files changed

+73
-80
lines changed

3 files changed

+73
-80
lines changed

Cargo.lock

+57-64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnp-core"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "MIT"
55
authors = ["Dr Maxim Orlovsky <[email protected]>"]
66
description = "LNP Core Library: rust implementation of modular lightning channels architecture"
@@ -19,13 +19,13 @@ path = "src/lib.rs"
1919
crate-type = ["rlib", "staticlib"]
2020

2121
[dependencies]
22-
amplify = "3.13.0"
23-
strict_encoding = "0.9.0-rc.2"
24-
lightning_encoding = "0.9.0-rc.1"
25-
bitcoin_scripts = "0.9.0-rc.1"
26-
descriptor-wallet = { version = "0.9.0-rc.1", features = ["keygen"] }
27-
lnp2p = { version = "0.9.0-rc.1", path = "lnp2p", default-features = false }
28-
lnpbp = "0.9.0-rc.1"
22+
amplify = "3.14.1"
23+
strict_encoding = "0.9.0"
24+
lightning_encoding = "0.9.0"
25+
bitcoin_scripts = "0.9.0"
26+
descriptor-wallet = { version = "0.9.0", features = ["keygen"] }
27+
lnp2p = { version = "0.9.0", path = "lnp2p", default-features = false }
28+
lnpbp = "0.9.0"
2929
bitcoin = { version = "0.29.2", features = ["rand"] }
3030
secp256k1 = { version = "0.24.2", features = ["global-context-less-secure"] }
3131
internet2 = { version = "0.9.0-rc.1", default-features = false, features = ["keygen"] }

lnp2p/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnp2p"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "MIT"
55
authors = ["Dr Maxim Orlovsky <[email protected]>"]
66
description = "LN P2P Library: rust implementation of lightning network peer protocols (BOLT and Bifrost)"
@@ -18,13 +18,13 @@ path = "src/lib.rs"
1818
crate-type = ["rlib", "staticlib"]
1919

2020
[dependencies]
21-
amplify = { version = "3.13.0", features = ["hex", "rand"] }
22-
lnpbp = "0.9.0-rc.1"
23-
bp-core = "0.9.0-rc.1"
24-
strict_encoding = { version = "0.9.0-rc.2", optional = true, features = ["chrono", "miniscript"] }
25-
lightning_encoding = { version = "0.9.0-rc.1", optional = true }
26-
bitcoin_scripts = "0.9.0-rc.1"
27-
psbt = "0.9.0-rc.1"
21+
amplify = { version = "3.14.1", features = ["hex", "rand"] }
22+
lnpbp = "0.9.0"
23+
bp-core = "0.9.0"
24+
strict_encoding = { version = "0.9.0", optional = true, features = ["chrono", "miniscript"] }
25+
lightning_encoding = { version = "0.9.0", optional = true }
26+
bitcoin_scripts = "0.9.0"
27+
psbt = "0.9.0"
2828
miniscript = "9.0.0"
2929
bitcoin = "0.29.2"
3030
secp256k1 = { version = "0.24.2", features = ["global-context"] }

0 commit comments

Comments
 (0)