Skip to content

Commit 3dd4ae6

Browse files
committedMay 5, 2022
Release v0.6
1 parent dfc940f commit 3dd4ae6

File tree

4 files changed

+44
-62
lines changed

4 files changed

+44
-62
lines changed
 

‎Cargo.lock

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

‎Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnpbp"
3-
version = "0.6.0-rc.1"
3+
version = "0.6.0"
44
license = "MIT"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
66
description = "LNP/BP Core Library implementing LNPBP specifications & standards"
@@ -24,13 +24,13 @@ required-features = ["cli"]
2424

2525
[dependencies]
2626
amplify = { version = "3.12.0", features = ["stringly_conversions", "std"] }
27-
lnpbp_bech32 = { version = "0.6.0-rc.1", path = "bech32" }
28-
lnpbp_chain = { version = "0.6.0-rc.1", path = "chain" }
27+
lnpbp_bech32 = { version = "0.6.0", path = "bech32" }
28+
lnpbp_chain = { version = "0.6.0", path = "chain" }
2929
lnpbp_elgamal = { version = "0.6.0", path = "elgamal", optional = true }
3030
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
3131
serde_with = { version = "1.8", features = ["hex"], optional = true }
3232
# serde_with_macros = { version = "~1.2.0", optional = true } # Fix for the problem in 1.3.0
33-
clap = { version = "3.1.6", features = ["derive"], optional = true }
33+
clap = { version = "3.1", features = ["derive"], optional = true }
3434
serde_yaml = { version = "0.8", optional = true }
3535
serde_json = { version = "1", optional = true }
3636
base64-compat = { version = "1", optional = true } # Used by cli only

‎bech32/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnpbp_bech32"
3-
version = "0.6.0-rc.1"
3+
version = "0.6.0"
44
license = "MIT"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
66
description = "LNPBP-14 implementation"
@@ -13,7 +13,7 @@ edition = "2018"
1313
[dependencies]
1414
amplify = "3.12.0"
1515
bitcoin_hashes = "0.10.0"
16-
strict_encoding = "1.8.0-rc.1"
16+
strict_encoding = "1.8.0"
1717
bech32 = "0.8.1"
1818
deflate = { version = "1.0.0", optional = true }
1919
inflate = { version = "0.4.5", optional = true }

‎chain/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lnpbp_chain"
3-
version = "0.6.0-rc.1"
3+
version = "0.6.0"
44
license = "MIT"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
66
description = "LNPBP library defining chain parameters"
@@ -13,15 +13,15 @@ edition = "2018"
1313
[dependencies]
1414
amplify = "3.12.0"
1515
bitcoin_hashes = "0.10.0" # We need macro from here
16-
bitcoin = "0.28.0-rc.1"
17-
strict_encoding = "1.8.0-rc.1"
18-
lightning_encoding = { version = "0.6.0-rc.1" }
16+
bitcoin = "0.28.0"
17+
strict_encoding = "1.8.0"
18+
lightning_encoding = { version = "0.6.0" }
1919
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
2020
serde_with = { version = "1.8", features = ["hex"], optional = true }
2121
once_cell = "1.10.0"
2222

2323
[dev-dependencies]
24-
strict_encoding_test = "1.8.0-rc.1"
24+
strict_encoding_test = "1.8.0"
2525

2626
[features]
2727
serde = ["serde_crate", "serde_with", "bitcoin_hashes/serde", "bitcoin/use-serde"]

0 commit comments

Comments
 (0)