Skip to content

Commit 63f2c1a

Browse files
authored
Merge pull request #312 from RGB-WG/v0.12
Release v0.12.0 RC3
2 parents 0e689f6 + a1e6b41 commit 63f2c1a

3 files changed

Lines changed: 79 additions & 76 deletions

File tree

Cargo.lock

Lines changed: 65 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "psbt", "descriptors", "cli"]
33
default-members = [".", "psbt", "descriptors"]
44

55
[workspace.package]
6-
version = "0.12.0-rc.2"
6+
version = "0.12.0-rc.3"
77
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts", "lnp-bp"]
88
categories = ["cryptography::cryptocurrencies"]
99
authors = ["Dr Maxim Orlovsky <orlovsky@lnp-bp.org>"]
@@ -17,16 +17,16 @@ license = "Apache-2.0"
1717
amplify = "4.9.0"
1818
strict_encoding = "2.9.1"
1919
strict_types = "2.9.0"
20-
commit_verify = "0.12.0-rc.1"
21-
bp-core = "0.12.0-rc.2"
22-
bp-std = { version = "0.12.0-rc.2", features = ["client-side-validation"] }
20+
commit_verify = "0.12.0"
21+
bp-core = "0.12.0"
22+
bp-std = { version = "0.12.0-rc.3", features = ["client-side-validation"] }
2323
bp-electrum = { version = "0.12.0-rc.1" }
24-
bp-esplora = { version = "0.12.0-rc.1", default-features = false }
25-
rgb-std = { version = "0.12.0-rc.2" }
26-
rgb-runtime = { version = "0.12.0-rc.2", path = "." }
27-
rgb-psbt = { version = "0.12.0-rc.2", path = "psbt" }
28-
rgb-descriptors = { version = "0.12.0-rc.2", path = "descriptors" }
29-
rgb-persist-fs = { version = "0.12.0-rc.2" }
24+
bp-esplora = { version = "0.12.0-rc.3", default-features = false }
25+
rgb-std = { version = "0.12.0-rc.3" }
26+
rgb-runtime = { version = "0.12.0-rc.3", path = "." }
27+
rgb-psbt = { version = "0.12.0-rc.3", path = "psbt" }
28+
rgb-descriptors = { version = "0.12.0-rc.3", path = "descriptors" }
29+
rgb-persist-fs = { version = "0.12.0-rc.3" }
3030
indexmap = "2.9.0"
3131
futures = "0.3.31"
3232
chrono = { version = "0.4.41", features = ["serde"] }
@@ -130,15 +130,3 @@ serde = [
130130

131131
[package.metadata.docs.rs]
132132
features = ["all"]
133-
134-
[patch.crates-io]
135-
bp-consensus = { git = "https://github.com/BP-WG/bp-core" }
136-
bp-core = { git = "https://github.com/BP-WG/bp-core" }
137-
bp-invoice = { git = "https://github.com/BP-WG/bp-std", branch = "feat/descriptors" }
138-
bp-derive = { git = "https://github.com/BP-WG/bp-std", branch = "feat/descriptors" }
139-
descriptors = { git = "https://github.com/BP-WG/bp-std", branch = "feat/descriptors" }
140-
psbt = { git = "https://github.com/BP-WG/bp-std", branch = "feat/descriptors" }
141-
bp-std = { git = "https://github.com/BP-WG/bp-std", branch = "feat/descriptors" }
142-
bp-esplora = { git = "https://github.com/BP-WG/bp-esplora-client", branch = "master" }
143-
rgb-std = { git = "https://github.com/RGB-WG/rgb-std", branch = "async" }
144-
rgb-persist-fs = { git = "https://github.com/RGB-WG/rgb-std", branch = "async" }

cli/src/exec.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,11 @@ impl Args {
271271
};
272272
for contract_id in contract_ids {
273273
let state = if *all {
274-
runtime.state_all(contract_id).map(|seal| seal.primary)
274+
runtime
275+
.contract_state_full(contract_id)
276+
.map(|seal| seal.primary)
275277
} else {
276-
runtime.state_own(contract_id)
278+
runtime.wallet_contract_state(contract_id)
277279
};
278280
let articles = runtime.contracts.contract_articles(contract_id);
279281
println!("{contract_id}\t{}", articles.issue().meta.name);

0 commit comments

Comments
 (0)