diff --git a/Cargo.toml b/Cargo.toml index 7d1aa28d..9d51261b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "2.4.0" +version = "2.5.0" authors = ["Andrey Fedotov ", "Alexey Vishnyakov ", "Georgy Savidov "] [workspace] diff --git a/casr/Cargo.toml b/casr/Cargo.toml index 4d820a34..1214b22e 100644 --- a/casr/Cargo.toml +++ b/casr/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "casr" authors = ["Andrey Fedotov ", "Alexey Vishnyakov ", "Georgy Savidov "] -version = "2.4.0" +version = "2.5.0" description = "Collect crash reports, triage, and estimate severity." keywords = ["gdb", "crash", "stacktrace", "triage", "coredump"] readme = "../README.md" @@ -30,7 +30,7 @@ serde_json = "~1.0" regex = "~1.5" libc = "~0" -libcasr = { path = "../libcasr", version = "2.4.0", features = ["serde", "exploitable"] } +libcasr = { path = "../libcasr", version = "2.5.0", features = ["serde", "exploitable"] } [dev-dependencies] lazy_static = "~1.4" diff --git a/casr/src/bin/casr-afl.rs b/casr/src/bin/casr-afl.rs index b9f12d31..6db05b5f 100644 --- a/casr/src/bin/casr-afl.rs +++ b/casr/src/bin/casr-afl.rs @@ -30,7 +30,7 @@ struct AflCrashInfo { fn main() -> Result<()> { let matches = App::new("casr-afl") - .version("2.4.0") + .version("2.5.0") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov ") .about("Triage crashes found by AFL++") .term_width(90) diff --git a/casr/src/bin/casr-cli.rs b/casr/src/bin/casr-cli.rs index 80492ed4..89ffc52e 100644 --- a/casr/src/bin/casr-cli.rs +++ b/casr/src/bin/casr-cli.rs @@ -41,7 +41,7 @@ use libcasr::report::CrashReport; fn main() -> Result<()> { let matches = App::new("casr-cli") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov ") - .version("2.4.0") + .version("2.5.0") .about("App provides text-based user interface to view CASR reports and print joint statistics for all reports.") .term_width(90) .arg( diff --git a/casr/src/bin/casr-cluster.rs b/casr/src/bin/casr-cluster.rs index 7872a476..8f7e40ff 100644 --- a/casr/src/bin/casr-cluster.rs +++ b/casr/src/bin/casr-cluster.rs @@ -327,7 +327,7 @@ fn merge_dirs(input: &Path, output: &Path) -> Result { fn main() -> Result<()> { let matches = App::new("casr-cluster") - .version("2.4.0") + .version("2.5.0") .author( "Andrey Fedotov , \ Alexey Vishnyakov , Georgy Savidov ", diff --git a/casr/src/bin/casr-core.rs b/casr/src/bin/casr-core.rs index bb4b9e03..f299d23f 100644 --- a/casr/src/bin/casr-core.rs +++ b/casr/src/bin/casr-core.rs @@ -35,7 +35,7 @@ use libcasr::severity::Severity; fn main() -> Result<()> { let matches = App::new("casr-core") - .version("2.4.0") + .version("2.5.0") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov ") .about("Analyze coredump for security goals and provide detailed report with severity estimation") .term_width(90) diff --git a/casr/src/bin/casr-gdb.rs b/casr/src/bin/casr-gdb.rs index 162224fb..ed9f9071 100644 --- a/casr/src/bin/casr-gdb.rs +++ b/casr/src/bin/casr-gdb.rs @@ -32,7 +32,7 @@ use std::path::{Path, PathBuf}; fn main() -> Result<()> { let matches = App::new("casr-gdb") - .version("2.4.0") + .version("2.5.0") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov ") .about("Create CASR reports (.casrep) from gdb execution") .term_width(90) diff --git a/casr/src/bin/casr-python.rs b/casr/src/bin/casr-python.rs index aff9ee14..d9305c3a 100644 --- a/casr/src/bin/casr-python.rs +++ b/casr/src/bin/casr-python.rs @@ -52,7 +52,7 @@ fn call_casr_san(matches: &ArgMatches, argv: &[&str]) -> Result<()> { fn main() -> Result<()> { let matches = App::new("casr-python") - .version("2.4.0") + .version("2.5.0") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov , Ilya Yegorov ") .about("Create CASR reports (.casrep) from python reports") .term_width(90) diff --git a/casr/src/bin/casr-san.rs b/casr/src/bin/casr-san.rs index 9d2d2ad5..6e172c11 100644 --- a/casr/src/bin/casr-san.rs +++ b/casr/src/bin/casr-san.rs @@ -34,7 +34,7 @@ use std::process::Command; fn main() -> Result<()> { let matches = App::new("casr-san") - .version("2.4.0") + .version("2.5.0") .author("Andrey Fedotov , Alexey Vishnyakov , Georgy Savidov ") .about("Create CASR reports (.casrep) from sanitizer reports") .term_width(90) diff --git a/libcasr/Cargo.toml b/libcasr/Cargo.toml index 21fda5ae..f3d623cf 100644 --- a/libcasr/Cargo.toml +++ b/libcasr/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libcasr" authors = ["Andrey Fedotov ", "Alexey Vishnyakov ", "Georgy Savidov "] -version = "2.4.0" +version = "2.5.0" description = "Collect crash reports, triage, and estimate severity." keywords = ["gdb", "crash", "stacktrace", "triage", "coredump"] readme = "../README.md"