Skip to content

Commit b949e42

Browse files
authored
chore(rust/signed-doc): Release v0.0.7 (#557)
* release: v0.0.7 * chore: fmtfix
1 parent 760bbcc commit b949e42

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

rust/signed_doc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "catalyst-signed-doc"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
edition.workspace = true
55
authors.workspace = true
66
homepage.workspace = true
@@ -11,7 +11,7 @@ license.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
catalyst-types = { version = "0.0.6", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.6" }
14+
catalyst-types = { version = "0.0.7", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "catalyst-types/v0.0.7" }
1515
cbork-utils = { version = "0.0.2", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "cbork-utils-v0.0.2" }
1616

1717
catalyst-signed-doc-macro = { version = "0.0.1", path = "../catalyst-signed-doc-macro" }

rust/signed_doc/bins/mk_signed_doc.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ impl Cli {
6868
.with_json_metadata(metadata)?
6969
.with_json_content(&json_doc)?
7070
.build()?;
71-
println!(
72-
"report {}",
73-
serde_json::to_string(&signed_doc.problem_report())?
74-
);
71+
println!("report {:?}", &signed_doc.problem_report());
7572
save_signed_doc(signed_doc, &output)?;
7673
},
7774
Self::Sign { doc, sk_hex, kid } => {

0 commit comments

Comments
 (0)