Skip to content

Commit f011c82

Browse files
committed
Release v0.8.0
1 parent 46cf206 commit f011c82

File tree

4 files changed

+38
-38
lines changed

4 files changed

+38
-38
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 12 deletions
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.8.0-rc.1"
8+
version = "0.8.0"
99
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
1010
license = "MIT"
1111
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"]
@@ -44,14 +44,14 @@ required-features = ["server"]
4444

4545
[dependencies]
4646
# LNP/BP crates
47-
amplify = "3.12.1"
47+
amplify = "3.13.0"
4848
strict_encoding = { version = "0.8.0", features = ["miniscript"] }
4949
descriptor-wallet = { version = "0.8.0", features = ["keygen", "miniscript", "electrum"] }
5050
lnpbp = "0.8.0"
51-
lnp-core = "0.8.0-beta.1"
52-
lnp_rpc = { version = "0.8.0-beta.1", path = "./rpc" }
53-
internet2 = { version = "0.8.0", features = ["keygen"] }
54-
microservices = { version = "0.8.8", default-features = false, features = ["node", "peer"] }
51+
lnp-core = "0.8.0"
52+
lnp_rpc = { version = "0.8.0", path = "./rpc" }
53+
internet2 = { version = "0.8.3", features = ["keygen"] }
54+
microservices = { version = "0.8.10", default-features = false, features = ["node", "peer"] }
5555
# Bitcoin
5656
bitcoin = { version = "0.28.1", features = ["rand"] }
5757
miniscript = "7.0.0"
@@ -73,17 +73,17 @@ rpassword = { version = "5.0.1", optional = true }
7373
zmq = { package = "zmq2", version = "0.5.0" }
7474

7575
[dev-dependencies]
76-
strict_encoding_test = "1.7.4"
76+
strict_encoding_test = "1.8.0"
7777

7878
[build-dependencies]
79-
amplify = "3.12.1"
79+
amplify = "3.13.0"
8080
lnpbp = "0.8.0"
8181
bitcoin = "0.28.1"
8282
lightning-invoice = "0.16.0"
83-
lnp-core = "0.8.0-beta.1"
84-
lnp_rpc = { version = "0.8.0-beta.1", path = "./rpc" }
85-
internet2 = "0.8.0"
86-
microservices = { version = "0.8.0", default-features = false, features = ["peer"] }
83+
lnp-core = "0.8.0"
84+
lnp_rpc = { version = "0.8.0", path = "./rpc" }
85+
internet2 = "0.8.3"
86+
microservices = { version = "0.8.10", default-features = false, features = ["peer"] }
8787
clap = { version = "~3.1.18", features = ["env", "derive"] }
8888
clap_complete = "~3.1.4"
8989
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }

cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
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.8.0-rc.1"
4+
version = "0.8.0"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
@@ -16,12 +16,12 @@ path = "src/main.rs"
1616
name = "lnp-cli"
1717

1818
[dependencies]
19-
amplify = "3.12.1"
20-
lnp-core = { version = "0.8.0-beta.1", default-features = false }
21-
lnp_rpc = { version = "0.8.0-beta.1", path = "../rpc" }
19+
amplify = "3.13.0"
20+
lnp-core = { version = "0.8.0", default-features = false }
21+
lnp_rpc = { version = "0.8.0", path = "../rpc" }
2222
lightning-invoice = { version = "0.16.0", optional = true }
23-
internet2 = "0.8.0"
24-
microservices = { version = "0.8.0", default-features = false, features = ["cli"] }
23+
internet2 = "0.8.3"
24+
microservices = { version = "0.8.10", default-features = false, features = ["cli"] }
2525
shellexpand = "2.1"
2626
clap = { version = "~3.1.18", features = ["derive", "env"] }
2727
log = "0.4.14"

rpc/Cargo.toml

Lines changed: 7 additions & 7 deletions
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.8.0-rc.1"
4+
version = "0.8.0"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"]
@@ -14,15 +14,15 @@ readme = "../README.md"
1414
name = "lnp_rpc"
1515

1616
[dependencies]
17-
amplify = "3.12.1"
18-
strict_encoding = "0.8.0"
19-
lnp-core = { version = "0.8.0-beta.1", default-features = false }
17+
amplify = "3.13.0"
18+
strict_encoding = "0.8.1"
19+
lnp-core = { version = "0.8.0", default-features = false }
2020
lnpbp = "0.8.0"
2121
bitcoin = { version = "0.28.1", features = ["rand"] }
2222
lightning-invoice = { version = "0.16.0", optional = true }
23-
internet2 = "0.8.0"
24-
microservices = { version = "0.8.2", default-features = false, features = ["client"] }
25-
descriptor-wallet = "0.8.0"
23+
internet2 = "0.8.3"
24+
microservices = { version = "0.8.10", default-features = false, features = ["client"] }
25+
descriptor-wallet = "0.8.2"
2626
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
2727
serde_with = { version = "1.8", optional = true }
2828
serde_yaml = { version = "0.8.23", optional = true }

0 commit comments

Comments
 (0)