Skip to content

Commit

Permalink
Release v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anfedotoff committed Feb 3, 2023
1 parent 6474a02 commit 97dbdb2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casr"
version = "2.3.0"
version = "2.4.0"
authors = ["Andrey Fedotov <[email protected]>", "Alexey Vishnyakov <[email protected]>", "Georgy Savidov <[email protected]>"]

edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-afl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct AflCrashInfo {

fn main() -> Result<()> {
let matches = App::new("casr-afl")
.version("2.3.0")
.version("2.4.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.about("Triage crashes found by AFL++")
.term_width(90)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use casr::report::CrashReport;
fn main() -> Result<()> {
let matches = App::new("casr-cli")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.3.0")
.version("2.4.0")
.about("App provides text-based user interface to view CASR reports and print joint statistics for all reports.")
.term_width(90)
.arg(
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ fn merge_dirs(input: &Path, output: &Path) -> Result<u64> {

fn main() -> Result<()> {
let matches = App::new("casr-cluster")
.version("2.3.0")
.version("2.4.0")
.author(
"Andrey Fedotov <[email protected]>, \
Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use casr::report::*;

fn main() -> Result<()> {
let matches = App::new("casr-core")
.version("2.3.0")
.version("2.4.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.about("Analyze coredump for security goals and provide detailed report with severity estimation")
.term_width(90)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-gdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use std::path::{Path, PathBuf};

fn main() -> Result<()> {
let matches = App::new("casr-gdb")
.version("2.3.0")
.version("2.4.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.about("Create CASR reports (.casrep) from gdb execution")
.term_width(90)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ fn call_casr_san(matches: &ArgMatches, argv: &[&str]) -> Result<()> {

fn main() -> Result<()> {
let matches = App::new("casr-python")
.version("2.3.0")
.version("2.4.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>, Ilya Yegorov <[email protected]>")
.about("Create CASR reports (.casrep) from python reports")
.term_width(90)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr-san.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use std::process::Command;

fn main() -> Result<()> {
let matches = App::new("casr-san")
.version("2.3.0")
.version("2.4.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.about("Create CASR reports (.casrep) from sanitizer reports")
.term_width(90)
Expand Down

0 comments on commit 97dbdb2

Please sign in to comment.