Skip to content

Commit 7259204

Browse files
committed
Release v0.9
1 parent 6657435 commit 7259204

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Cargo.lock

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

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [".", "rpc", "cli"]
55
[package]
66
name = "lnp_node"
77
description = "LNP node"
8-
version = "0.9.0-rc.1"
8+
version = "0.9.0"
99
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
1010
license = "MIT"
1111
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"]
@@ -51,9 +51,9 @@ bitcoin_blockchain = "0.9.0"
5151
descriptor-wallet = { version = "0.9.0", features = ["keygen", "miniscript", "electrum", "sign", "construct"] }
5252
lnpbp = "0.9.0"
5353
lnp-core = "0.9.0"
54-
lnp_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
54+
lnp_rpc = { version = "0.9.0", path = "./rpc" }
5555
internet2 = { version = "0.9.0", features = ["keygen"] }
56-
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["node", "peer"] }
56+
microservices = { version = "0.9.0", default-features = false, features = ["node", "peer"] }
5757
# Bitcoin
5858
bitcoin = { version = "0.29.2", features = ["rand"] }
5959
miniscript = "9.0.0"
@@ -77,15 +77,15 @@ rpassword = { version = "5.0.1", optional = true }
7777
zmq = { package = "zmq2", version = "0.5.0" }
7878

7979
[dev-dependencies]
80-
strict_encoding_test = "0.9.0-rc.1"
80+
strict_encoding_test = "0.9.0"
8181

8282
[build-dependencies]
8383
amplify = "3.14.1"
8484
lnpbp = "0.9.0"
8585
bitcoin = "0.29.2"
8686
lightning-invoice = "0.21.0"
8787
lnp-core = "0.9.0"
88-
lnp_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
88+
lnp_rpc = { version = "0.9.0", path = "./rpc" }
8989
internet2 = "0.9.0"
9090
microservices = { version = "0.9.0", default-features = false, features = ["peer", "shell"] }
9191
clap = { version = "~3.2.23", features = ["env", "derive"] }

cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lnp-cli"
33
description = "LNP node command-line interface"
4-
version = "0.9.0-rc.1"
4+
version = "0.9.0"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
@@ -18,7 +18,7 @@ name = "lnp-cli"
1818
[dependencies]
1919
amplify = "3.14.1"
2020
lnp-core = { version = "0.9.0", default-features = false }
21-
lnp_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
21+
lnp_rpc = { version = "0.9.0", path = "../rpc" }
2222
lightning-invoice = { version = "0.21.0", optional = true }
2323
internet2 = "0.9.0"
2424
microservices = { version = "0.9.0", default-features = false, features = ["cli"] }
@@ -33,7 +33,7 @@ clap_complete = "~3.2.5"
3333
lightning-invoice = "0.21.0"
3434
internet2 = "0.9.0"
3535
lnp-core = { version = "0.9.0", default-features = false }
36-
lnp_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
36+
lnp_rpc = { version = "0.9.0", path = "../rpc" }
3737
configure_me_codegen = "0.4"
3838

3939
[features]

rpc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lnp_rpc"
33
description = "LNP node RPC API"
4-
version = "0.9.0-rc.1"
4+
version = "0.9.0"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"]
@@ -22,7 +22,7 @@ lnpbp = "0.9.0"
2222
bitcoin = { version = "0.29.2", features = ["rand"] }
2323
lightning-invoice = { version = "0.21.0", optional = true }
2424
internet2 = "0.9.0"
25-
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["client"] }
25+
microservices = { version = "0.9.0", default-features = false, features = ["client"] }
2626
descriptor-wallet = "0.9.0"
2727
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
2828
serde_with = { version = "1.14", optional = true }

0 commit comments

Comments
 (0)