diff --git a/Cargo.lock b/Cargo.lock index 7110623..f43efea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -457,7 +457,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "pe-sign" -version = "0.1.0" +version = "0.1.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index a68b676..fd180df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pe-sign" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["REinject"] homepage = "https://github.com/0xlane/pe-sign" diff --git a/README.md b/README.md index 71cc3aa..7006428 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Download the binary for your platform from the Releases page. On Linux and macOS ### Usage ```powershell -pe-sign (0.1.0) - REinject +pe-sign (0.1.1) - REinject A tool for parsing and verifing PE file signatures Repository: https://github.com/0xlane/pe-sign diff --git a/README_zh.md b/README_zh.md index b67b318..20dbf3b 100644 --- a/README_zh.md +++ b/README_zh.md @@ -30,7 +30,7 @@ ### 使用说明 ```powershell -pe-sign (0.1.0) - REinject +pe-sign (0.1.1) - REinject A tool for parsing and verifing PE file signatures Repository: https://github.com/0xlane/pe-sign diff --git a/src/main.rs b/src/main.rs index 25ac170..733e75c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,7 @@ fn cli() -> clap::Command { use clap::{arg, value_parser, Command}; Command::new("pe-sign") - .version("0.1.0") + .version("0.1.1") .about("A tool for parsing and verifing PE file signatures\n\nRepository: https://github.com/0xlane/pe-sign\n") .author("REinject") .help_template("{name} ({version}) - {author}\n{about}\n{all-args}")