Skip to content

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anfedotoff committed Nov 21, 2022
1 parent 4a19bd3 commit 6fc9138
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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.1.1"
version = "2.2.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 @@ -28,7 +28,7 @@ struct AflCrashInfo {

fn main() -> Result<()> {
let matches = App::new("casr-afl")
.version("2.1.1")
.version("2.2.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
4 changes: 2 additions & 2 deletions src/bin/casr-cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ 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.1.1")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.2.0")
.about("App provides text-based user interface to view CASR reports")
.term_width(90)
.arg(
Expand Down
4 changes: 2 additions & 2 deletions src/bin/casr-cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@ fn dedup(indir: &Path, outdir: Option<PathBuf>) -> Result<(usize, usize)> {

fn main() -> Result<()> {
let matches = App::new("casr-cluster")
.version("2.1.1")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.2.0")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.about("Tool for clustering CASR reports")
.term_width(90)
.arg(
Expand Down
4 changes: 2 additions & 2 deletions src/bin/casr-core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ use casr::report::*;

fn main() -> Result<()> {
let matches = App::new("casr-core")
.version("2.1.1")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.2.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)
.arg(Arg::new("mode")
Expand Down
4 changes: 2 additions & 2 deletions src/bin/casr-gdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ use std::path::PathBuf;

fn main() -> Result<()> {
let matches = App::new("casr-gdb")
.version("2.1.1")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.2.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)
.arg(
Expand Down
4 changes: 2 additions & 2 deletions src/bin/casr-san.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ use std::process::Command;

fn main() -> Result<()> {
let matches = App::new("casr-san")
.version("2.1.1")
.author("Andrey Fedotov <[email protected]>, Alexey Vishnyakov <[email protected]>, Georgy Savidov <[email protected]>")
.version("2.2.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)
.arg(
Expand Down

0 comments on commit 6fc9138

Please sign in to comment.