From e60838e36a9da0d259619f2a7b6eba5ad7fbf2f7 Mon Sep 17 00:00:00 2001 From: Jack Barnes Date: Sat, 3 Aug 2019 00:05:38 -0700 Subject: [PATCH] New version 0.1.1 --- .gitignore | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 3 +-- src/main.rs | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index a2bd102..8794ec4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ /target **/*.rs.bk -/.vscode \ No newline at end of file +/.vscode +/*.sh +/*.zip +/screenshots/ \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index a0f7022..cd8cb47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,7 +141,7 @@ dependencies = [ [[package]] name = "procview" -version = "0.1.0" +version = "0.1.1" dependencies = [ "benfred-read-process-memory 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 19c7700..35504d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "procview" -version = "0.1.0" +version = "0.1.1" authors = ["Jack Barnes "] edition = "2018" diff --git a/README.md b/README.md index b87d9d2..f671dae 100644 --- a/README.md +++ b/README.md @@ -97,5 +97,4 @@ cargo build --release ``` And the result will be at: ./target/release/procview -Thanks for checking out this project! - +Thanks for checking out this project! \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 7dbf7fe..2828eae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -20,7 +20,7 @@ use std::fs; //This function just prints the preformatted help display fn print_help() { - writeln!(&mut io::stdout(), " == procview v.0.1.0 == "); + writeln!(&mut io::stdout(), " == procview v 0.1.1 == "); writeln!(&mut io::stdout(), " == Available Commands == "); writeln!(&mut io::stdout(), "=================================================================="); writeln!(&mut io::stdout(), " help : Show Available Commands ");