Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit fadc303

Browse files
committedFeb 6, 2023
Release v0.9
1 parent e95e300 commit fadc303

File tree

4 files changed

+87
-86
lines changed

4 files changed

+87
-86
lines changed
 

‎Cargo.lock

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

‎Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [".", "rpc", "cli"]
55
[package]
66
name = "rgb_node"
77
description = "RGB node"
8-
version = "0.9.0-rc.1"
8+
version = "0.9.0"
99
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
1010
license = "MIT"
1111
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -30,23 +30,23 @@ required-features = ["server"]
3030
[dependencies]
3131
# LNP/BP crates
3232
amplify = "3.13.0"
33-
strict_encoding = "~0.9.0-rc.2"
34-
stens = "0.9.0-rc.1"
35-
commit_verify = "~0.9.0-rc.1"
33+
strict_encoding = "~0.9.0"
34+
stens = "0.9.0"
35+
commit_verify = "~0.9.0"
3636
internet2 = { version = "0.9.0-rc.1", features = ["keygen", "zmq"] }
3737
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["node"] }
38-
lnpbp = "0.9.0-rc.1"
39-
bp-core = { version = "0.9.0-rc.1", features = ["psbt"] }
40-
lnp-core = { version = "0.9.0-rc.1", features = ["bifrost"] }
38+
lnpbp = "0.9.0"
39+
bp-core = { version = "0.9.0", features = ["psbt"] }
40+
lnp-core = { version = "0.9.0", features = ["bifrost"] }
4141
lnp_rpc = "0.9.0-rc.1"
42-
rgb-std = "0.9.0-rc.1"
43-
rgb_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
42+
rgb-std = "0.9.0"
43+
rgb_rpc = { version = "0.9.0", path = "./rpc" }
4444
storm-core = "0.9.0-rc.1"
4545
storm_ext = "0.9.0-rc.1"
4646
storm_rpc = "0.9.0-rc.1"
4747
store_rpc = "0.9.0-rc.1"
4848
bitcoin = "0.29.2"
49-
psbt = "0.9.0-rc.1"
49+
psbt = "0.9.0"
5050
electrum-client = "0.12.0"
5151
# OS
5252
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
@@ -60,10 +60,10 @@ shellexpand = { version = "2.1", optional = true }
6060
amplify = "3.13.0"
6161
internet2 = "0.9.0-rc.1"
6262
microservices = { version = "0.9.0-rc.1", default-features = false }
63-
lnpbp = "0.9.0-rc.1"
64-
psbt = "0.9.0-rc.1"
65-
rgb-std = "0.9.0-rc.1"
66-
rgb_rpc = { version = "0.9.0-rc.1", path = "./rpc" }
63+
lnpbp = "0.9.0"
64+
psbt = "0.9.0"
65+
rgb-std = "0.9.0"
66+
rgb_rpc = { version = "0.9.0", path = "./rpc" }
6767
storm_ext = "0.9.0-rc.1"
6868
store_rpc = "0.9.0-rc.1"
6969
clap = { version = "~3.2.23", features = ["env"] }

‎cli/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rgb-cli"
33
description = "RGB node command-line interface"
4-
version = "0.9.0-rc.1"
4+
version = "0.9.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -17,14 +17,14 @@ name = "rgb-cli"
1717

1818
[dependencies]
1919
amplify = "3.13.0"
20-
strict_encoding = "~0.9.0-rc.2"
20+
strict_encoding = "~0.9.0"
2121
internet2 = "0.9.0-rc.1"
2222
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["cli"] }
2323
bitcoin = "0.29.2"
24-
psbt = "0.9.0-rc.1"
25-
lnpbp = "0.9.0-rc.1"
26-
rgb-std = { version = "0.9.0-rc.1", features = ["serde"] }
27-
rgb_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
24+
psbt = "0.9.0"
25+
lnpbp = "0.9.0"
26+
rgb-std = { version = "0.9.0", features = ["serde"] }
27+
rgb_rpc = { version = "0.9.0", path = "../rpc" }
2828
clap = { version = "~3.2.23", features = ["derive", "env"] }
2929
serde = "1"
3030
serde_json = "1"
@@ -37,12 +37,12 @@ colored = "2"
3737
amplify = "3.13.0"
3838
strict_encoding = "~0.9.0-rc.2"
3939
bitcoin = "0.29.2"
40-
lnpbp = "0.9.0-rc.1"
40+
lnpbp = "0.9.0"
4141
clap = { version = "~3.2.23", features = ["derive", "env"] }
4242
clap_complete = "~3.2.5"
4343
internet2 = "0.9.0-rc.1"
44-
rgb-std = "0.9.0-rc.1"
45-
rgb_rpc = { version = "0.9.0-rc.1", path = "../rpc" }
44+
rgb-std = "0.9.0"
45+
rgb_rpc = { version = "0.9.0", path = "../rpc" }
4646
configure_me_codegen = "0.4"
4747

4848
[package.metadata.docs.rs]

‎rpc/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rgb_rpc"
33
description = "RGB node RPC API"
4-
version = "0.9.0-rc.1"
4+
version = "0.9.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -15,14 +15,14 @@ name = "rgb_rpc"
1515

1616
[dependencies]
1717
amplify = "3.13.0"
18-
strict_encoding = "~0.9.0-rc.2"
19-
rgb-std = "0.9.0-rc.1"
18+
strict_encoding = "~0.9.0"
19+
rgb-std = "0.9.0"
2020
storm-core = "0.9.0-rc.1"
21-
lnpbp = "0.9.0-rc.1"
21+
lnpbp = "0.9.0"
2222
bitcoin = "0.29.2"
23-
psbt = "0.9.0-rc.1"
23+
psbt = "0.9.0"
2424
internet2 = "0.9.0-rc.1"
25-
bp-core = { version = "0.9.0-rc.1", features = ["psbt"] }
25+
bp-core = { version = "0.9.0", features = ["psbt"] }
2626
microservices = { version = "0.9.0-rc.1", default-features = false, features = ["client"] }
2727
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
2828
serde_with = { version = "1.14", optional = true }

0 commit comments

Comments
 (0)
This repository has been archived.