Skip to content

Commit

Permalink
Release v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jun 13, 2022
1 parent 9e52aeb commit 8f5af01
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 58 deletions.
62 changes: 25 additions & 37 deletions Cargo.lock

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

22 changes: 11 additions & 11 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.7.0-beta.1"
version = "0.7.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"]
Expand Down Expand Up @@ -47,10 +47,10 @@ amplify = "3.12.0"
strict_encoding = { version = "1.8.1", features = ["miniscript"] }
descriptor-wallet = { version = "0.7.1", features = ["keygen", "miniscript", "electrum"] }
lnpbp = "0.7.0"
lnp-core = "0.7.0-beta.1"
lnp_rpc = { version = "0.7.0-beta.1", path = "./rpc" }
internet2 = { version = "0.7.0-rc.1", features = ["keygen", "url"] }
microservices = { version = "0.7.0-rc.3", default-features = false, features = ["node", "peer"] }
lnp-core = "0.7.0"
lnp_rpc = { version = "0.7.0", path = "./rpc" }
internet2 = { version = "0.7.0", features = ["keygen", "url"] }
microservices = { version = "0.7.0", default-features = false, features = ["node", "peer"] }
# Bitcoin
bitcoin = { version = "0.28.1", features = ["rand"] }
miniscript = "7.0.0"
Expand All @@ -61,7 +61,7 @@ chrono = "0.4"
nix = "0.19"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
env_logger = "0.7"
clap = { version = "3.1", optional = true, features = ["env", "derive"] }
clap = { version = "~3.1.18", optional = true, features = ["env", "derive"] }
settings = { version = "0.10", package = "config", optional = true }
configure_me = { version = "0.4", optional = true }
dotenv = { version = "0.15", optional = true }
Expand All @@ -80,11 +80,11 @@ lnpbp = "0.7.0"
bitcoin = "0.28.1"
lightning-invoice = "0.14.0"
lnp-core = "0.7.0-beta.1"
lnp_rpc = { version = "0.7.0-beta.1", path = "./rpc" }
internet2 = "0.7.0-rc.1"
microservices = { version = "0.7.0-rc.3", default-features = false, features = ["peer"] }
clap = { version = "3.1", features = ["env"] }
clap_complete = "3.1"
lnp_rpc = { version = "0.7.0", path = "./rpc" }
internet2 = "0.7.0"
microservices = { version = "0.7.0", default-features = false, features = ["peer"] }
clap = { version = "~3.1.18", features = ["env"] }
clap_complete = "~3.1.4"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
shellexpand = "2"
configure_me_codegen = "0.4"
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.7.0-beta.1"
version = "0.7.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
Expand All @@ -15,12 +15,12 @@ name = "lnp-cli"

[dependencies]
amplify = "3.12.0"
lnp-core = { version = "0.7.0-beta.1", default-features = false }
lnp_rpc = { version = "0.7.0-beta.1", path = "../rpc" }
lnp-core = { version = "0.7.0", default-features = false }
lnp_rpc = { version = "0.7.0", path = "../rpc" }
lightning-invoice = { version = "0.14.0", optional = true }
internet2 = "0.7.0-rc.1"
microservices = { version = "0.7.0-rc.1", default-features = false, features = ["cli"] }
clap = { version = "3.1", features = ["derive", "env"] }
internet2 = "0.7.0"
microservices = { version = "0.7.0", default-features = false, features = ["cli"] }
clap = { version = "~3.1.18", features = ["derive", "env"] }
log = "0.4.14"

[features]
Expand Down
8 changes: 4 additions & 4 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.7.0-beta.1"
version = "0.7.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"]
Expand All @@ -14,12 +14,12 @@ name = "lnp_rpc"
[dependencies]
amplify = "3.12.0"
strict_encoding = "1.8.1"
lnp-core = { version = "0.7.0-beta.1", default-features = false }
lnp-core = { version = "0.7.0", default-features = false }
lnpbp = "0.7.0"
bitcoin = { version = "0.28.1", features = ["rand"] }
lightning-invoice = { version = "0.14.0", optional = true }
internet2 = "0.7.0-rc.1"
microservices = { version = "0.7.0-rc.2", default-features = false, features = ["client"] }
internet2 = "0.7.0"
microservices = { version = "0.7.0", default-features = false, features = ["client"] }
descriptor-wallet = "0.7.1"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", optional = true }
Expand Down

0 comments on commit 8f5af01

Please sign in to comment.