Skip to content

Commit 80b04a2

Browse files
authored
Merge pull request #14 from Jon-Becker/fix/version
fix: increment version
2 parents e5238d1 + 2b779d2 commit 80b04a2

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heimdall-common"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heimdall-config"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"

heimdall/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"]
55
license = "MIT"
66
name = "heimdall"
77
readme = "README.md"
8-
version = "0.1.4"
8+
version = "0.1.5"
99

1010
[dependencies]
1111
backtrace = "0.3"

heimdall/src/decompile/output.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ pub fn build_output(
264264
)
265265
);
266266

267+
logger.info(&format!("wrote decompiled ABI to '{}' .", abi_output_path).to_string());
268+
267269
// write the decompiled source to file
268270
let mut decompiled_output: Vec<String> = Vec::new();
269271

@@ -399,4 +401,6 @@ pub fn build_output(
399401
// &decompiled_output_path,
400402
// decompiled_output
401403
// );
404+
//
405+
// logger.info(&format!("wrote decompiled solidity to '{}' .", decompiled_output_path).to_string());
402406
}

0 commit comments

Comments
 (0)