Skip to content

Commit

Permalink
Release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jul 14, 2022
1 parent 46cf206 commit f011c82
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 38 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [".", "rpc", "cli"]
[package]
name = "lnp_node"
description = "LNP node"
version = "0.8.0-rc.1"
version = "0.8.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"]
Expand Down Expand Up @@ -44,14 +44,14 @@ required-features = ["server"]

[dependencies]
# LNP/BP crates
amplify = "3.12.1"
amplify = "3.13.0"
strict_encoding = { version = "0.8.0", features = ["miniscript"] }
descriptor-wallet = { version = "0.8.0", features = ["keygen", "miniscript", "electrum"] }
lnpbp = "0.8.0"
lnp-core = "0.8.0-beta.1"
lnp_rpc = { version = "0.8.0-beta.1", path = "./rpc" }
internet2 = { version = "0.8.0", features = ["keygen"] }
microservices = { version = "0.8.8", default-features = false, features = ["node", "peer"] }
lnp-core = "0.8.0"
lnp_rpc = { version = "0.8.0", path = "./rpc" }
internet2 = { version = "0.8.3", features = ["keygen"] }
microservices = { version = "0.8.10", default-features = false, features = ["node", "peer"] }
# Bitcoin
bitcoin = { version = "0.28.1", features = ["rand"] }
miniscript = "7.0.0"
Expand All @@ -73,17 +73,17 @@ rpassword = { version = "5.0.1", optional = true }
zmq = { package = "zmq2", version = "0.5.0" }

[dev-dependencies]
strict_encoding_test = "1.7.4"
strict_encoding_test = "1.8.0"

[build-dependencies]
amplify = "3.12.1"
amplify = "3.13.0"
lnpbp = "0.8.0"
bitcoin = "0.28.1"
lightning-invoice = "0.16.0"
lnp-core = "0.8.0-beta.1"
lnp_rpc = { version = "0.8.0-beta.1", path = "./rpc" }
internet2 = "0.8.0"
microservices = { version = "0.8.0", default-features = false, features = ["peer"] }
lnp-core = "0.8.0"
lnp_rpc = { version = "0.8.0", path = "./rpc" }
internet2 = "0.8.3"
microservices = { version = "0.8.10", default-features = false, features = ["peer"] }
clap = { version = "~3.1.18", features = ["env", "derive"] }
clap_complete = "~3.1.4"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
Expand Down
12 changes: 6 additions & 6 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lnp-cli"
description = "LNP node command-line interface"
version = "0.8.0-rc.1"
version = "0.8.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
Expand All @@ -16,12 +16,12 @@ path = "src/main.rs"
name = "lnp-cli"

[dependencies]
amplify = "3.12.1"
lnp-core = { version = "0.8.0-beta.1", default-features = false }
lnp_rpc = { version = "0.8.0-beta.1", path = "../rpc" }
amplify = "3.13.0"
lnp-core = { version = "0.8.0", default-features = false }
lnp_rpc = { version = "0.8.0", path = "../rpc" }
lightning-invoice = { version = "0.16.0", optional = true }
internet2 = "0.8.0"
microservices = { version = "0.8.0", default-features = false, features = ["cli"] }
internet2 = "0.8.3"
microservices = { version = "0.8.10", default-features = false, features = ["cli"] }
shellexpand = "2.1"
clap = { version = "~3.1.18", features = ["derive", "env"] }
log = "0.4.14"
Expand Down
14 changes: 7 additions & 7 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lnp_rpc"
description = "LNP node RPC API"
version = "0.8.0-rc.1"
version = "0.8.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"]
Expand All @@ -14,15 +14,15 @@ readme = "../README.md"
name = "lnp_rpc"

[dependencies]
amplify = "3.12.1"
strict_encoding = "0.8.0"
lnp-core = { version = "0.8.0-beta.1", default-features = false }
amplify = "3.13.0"
strict_encoding = "0.8.1"
lnp-core = { version = "0.8.0", default-features = false }
lnpbp = "0.8.0"
bitcoin = { version = "0.28.1", features = ["rand"] }
lightning-invoice = { version = "0.16.0", optional = true }
internet2 = "0.8.0"
microservices = { version = "0.8.2", default-features = false, features = ["client"] }
descriptor-wallet = "0.8.0"
internet2 = "0.8.3"
microservices = { version = "0.8.10", default-features = false, features = ["client"] }
descriptor-wallet = "0.8.2"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", optional = true }
serde_yaml = { version = "0.8.23", optional = true }
Expand Down

0 comments on commit f011c82

Please sign in to comment.