Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anfedotoff committed Oct 21, 2022
1 parent c07dd30 commit af9f776
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.0.0"
version = "2.1.0"
authors = ["Andrey Fedotov <fedotoff@ispras.ru>", "Alexey Vishnyakov <vishnya@ispras.ru>", "Georgy Savidov <avgor46@ispras.ru>"]

edition = "2021"
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 @@ -35,7 +35,7 @@ use casr::report::CrashReport;
fn main() -> Result<()> {
let matches = App::new("casr-cli")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.version("2.0.0")
.version("2.1.0")
.about("App provides text-based user interface to view CASR 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 @@ -418,7 +418,7 @@ fn dedup(indir: &Path, outdir: Option<PathBuf>) -> error::Result<(usize, usize)>

fn main() -> error::Result<()> {
let matches = App::new("casr-cluster")
.version("2.0.0")
.version("2.1.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.about("Tool for clustering CASR reports")
.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 @@ -24,7 +24,7 @@ use std::path::PathBuf;

fn main() -> Result<()> {
let matches = App::new("casr-gdb")
.version("2.0.0")
.version("2.1.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.about("Create CASR reports (.casrep) from gdb execution")
.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 @@ -25,7 +25,7 @@ use std::process::Command;

fn main() -> Result<()> {
let matches = App::new("casr-san")
.version("2.0.0")
.version("2.1.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.about("Create CASR reports (.casrep) from sanitizer reports")
.term_width(90)
Expand Down
2 changes: 1 addition & 1 deletion src/bin/casr.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")
.version("2.0.0")
.version("2.1.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.about("Analyze coredump for security goals and provide detailed report with severity estimation")
.term_width(90)
Expand Down

0 comments on commit af9f776

Please sign in to comment.