Skip to content

Commit

Permalink
Release v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anfedotoff committed Mar 27, 2023
1 parent 3c2ea79 commit e8ced46
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "2.5.0"
version = "2.5.1"
authors = ["Andrey Fedotov <fedotoff@ispras.ru>", "Alexey Vishnyakov <vishnya@ispras.ru>", "Georgy Savidov <avgor46@ispras.ru>"]

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions casr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "casr"
authors = ["Andrey Fedotov <fedotoff@ispras.ru>", "Alexey Vishnyakov <vishnya@ispras.ru>", "Georgy Savidov <avgor46@ispras.ru>"]
version = "2.5.0"
version = "2.5.1"
description = "Collect crash reports, triage, and estimate severity."
keywords = ["gdb", "crash", "stacktrace", "triage", "coredump"]
readme = "../README.md"
Expand Down Expand Up @@ -30,7 +30,7 @@ serde_json = "1.0"
regex = "1.7"
libc = "0"

libcasr = { path = "../libcasr", version = "2.5.0", features = ["serde", "exploitable"] }
libcasr = { path = "../libcasr", version = "2.5.1", features = ["serde", "exploitable"] }

[dev-dependencies]
lazy_static = "1.4"
2 changes: 1 addition & 1 deletion casr/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.5.0")
.version("2.5.1")
.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 casr/src/bin/casr-cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use libcasr::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.5.0")
.version("2.5.1")
.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 casr/src/bin/casr-cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ fn merge_dirs(input: &Path, output: &Path) -> Result<u64> {

fn main() -> Result<()> {
let matches = App::new("casr-cluster")
.version("2.5.0")
.version("2.5.1")
.author(
"Andrey Fedotov <fedotoff@ispras.ru>, \
Alexey Vishnyakov <vishnya@ispras.ru>, Georgy Savidov <avgor46@ispras.ru>",
Expand Down
2 changes: 1 addition & 1 deletion casr/src/bin/casr-core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use libcasr::severity::Severity;

fn main() -> Result<()> {
let matches = App::new("casr-core")
.version("2.5.0")
.version("2.5.1")
.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 casr/src/bin/casr-gdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use std::path::{Path, PathBuf};

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

fn main() -> Result<()> {
let matches = App::new("casr-python")
.version("2.5.0")
.version("2.5.1")
.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 casr/src/bin/casr-san.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use std::process::Command;

fn main() -> Result<()> {
let matches = App::new("casr-san")
.version("2.5.0")
.version("2.5.1")
.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 libcasr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libcasr"
authors = ["Andrey Fedotov <fedotoff@ispras.ru>", "Alexey Vishnyakov <vishnya@ispras.ru>", "Georgy Savidov <avgor46@ispras.ru>"]
version = "2.5.0"
version = "2.5.1"
description = "Collect crash reports, triage, and estimate severity."
keywords = ["gdb", "crash", "stacktrace", "triage", "coredump"]
readme = "../README.md"
Expand Down

0 comments on commit e8ced46

Please sign in to comment.