Skip to content

Commit

Permalink
Release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Feb 6, 2023
1 parent 6657435 commit 7259204
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.9.0-rc.1"
version = "0.9.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"]
Expand Down Expand Up @@ -51,9 +51,9 @@ bitcoin_blockchain = "0.9.0"
descriptor-wallet = { version = "0.9.0", features = ["keygen", "miniscript", "electrum", "sign", "construct"] }
lnpbp = "0.9.0"
lnp-core = "0.9.0"
lnp_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
lnp_rpc = { version = "0.9.0", path = "./rpc" }
internet2 = { version = "0.9.0", features = ["keygen"] }
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["node", "peer"] }
microservices = { version = "0.9.0", default-features = false, features = ["node", "peer"] }
# Bitcoin
bitcoin = { version = "0.29.2", features = ["rand"] }
miniscript = "9.0.0"
Expand All @@ -77,15 +77,15 @@ rpassword = { version = "5.0.1", optional = true }
zmq = { package = "zmq2", version = "0.5.0" }

[dev-dependencies]
strict_encoding_test = "0.9.0-rc.1"
strict_encoding_test = "0.9.0"

[build-dependencies]
amplify = "3.14.1"
lnpbp = "0.9.0"
bitcoin = "0.29.2"
lightning-invoice = "0.21.0"
lnp-core = "0.9.0"
lnp_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
lnp_rpc = { version = "0.9.0", path = "./rpc" }
internet2 = "0.9.0"
microservices = { version = "0.9.0", default-features = false, features = ["peer", "shell"] }
clap = { version = "~3.2.23", features = ["env", "derive"] }
Expand Down
6 changes: 3 additions & 3 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.9.0-rc.1"
version = "0.9.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
Expand All @@ -18,7 +18,7 @@ name = "lnp-cli"
[dependencies]
amplify = "3.14.1"
lnp-core = { version = "0.9.0", default-features = false }
lnp_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
lnp_rpc = { version = "0.9.0", path = "../rpc" }
lightning-invoice = { version = "0.21.0", optional = true }
internet2 = "0.9.0"
microservices = { version = "0.9.0", default-features = false, features = ["cli"] }
Expand All @@ -33,7 +33,7 @@ clap_complete = "~3.2.5"
lightning-invoice = "0.21.0"
internet2 = "0.9.0"
lnp-core = { version = "0.9.0", default-features = false }
lnp_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
lnp_rpc = { version = "0.9.0", path = "../rpc" }
configure_me_codegen = "0.4"

[features]
Expand Down
4 changes: 2 additions & 2 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.9.0-rc.1"
version = "0.9.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"]
Expand All @@ -22,7 +22,7 @@ lnpbp = "0.9.0"
bitcoin = { version = "0.29.2", features = ["rand"] }
lightning-invoice = { version = "0.21.0", optional = true }
internet2 = "0.9.0"
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["client"] }
microservices = { version = "0.9.0", default-features = false, features = ["client"] }
descriptor-wallet = "0.9.0"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.14", optional = true }
Expand Down

0 comments on commit 7259204

Please sign in to comment.