Skip to content

Commit

Permalink
Release v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anfedotoff committed Dec 24, 2022
1 parent c5b2f85 commit 0bb69c6
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.2.0"
version = "2.3.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-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.2.0")
.version("2.3.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>")
.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 @@ -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.2.0")
.version("2.3.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 @@ -501,7 +501,7 @@ fn merge_dirs(input: &Path, output: &Path) -> Result<u64> {

fn main() -> Result<()> {
let matches = App::new("casr-cluster")
.version("2.2.0")
.version("2.3.0")
.author(
"Andrey Fedotov <fedotoff@ispras.ru>, \
Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>",
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.2.0")
.version("2.3.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
2 changes: 1 addition & 1 deletion src/bin/casr-gdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use std::path::PathBuf;

fn main() -> Result<()> {
let matches = App::new("casr-gdb")
.version("2.2.0")
.version("2.3.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-python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fn call_casr_san(matches: &ArgMatches, argv: &[&str]) -> Result<()> {

fn main() -> Result<()> {
let matches = App::new("casr-python")
.version("2.2.0")
.version("2.3.0")
.author("Andrey Fedotov <fedotoff@ispras.ru>, Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>, Ilya Yegorov <Yegorov_Ilya@ispras.ru>")
.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 @@ -25,7 +25,7 @@ use std::process::Command;

fn main() -> Result<()> {
let matches = App::new("casr-san")
.version("2.2.0")
.version("2.3.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

0 comments on commit 0bb69c6

Please sign in to comment.