diff --git a/Cargo.lock b/Cargo.lock index a888f28..f860319 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -564,7 +564,7 @@ dependencies = [ [[package]] name = "yacrd" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bio 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index fecb86e..5b67d03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yacrd" -version = "0.4.0" +version = "0.4.1" authors = ["Pierre Marijon "] exclude = ["image/*", "validation/*", "tests/*"] diff --git a/Readme.md b/Readme.md index b0482a1..6c9aebd 100644 --- a/Readme.md +++ b/Readme.md @@ -71,7 +71,7 @@ cargo install 2) ``` -yacrd 0.4 Doduo +yacrd 0.4.1 Hypno Pierre Marijon Yet Another Chimeric Read Detector diff --git a/src/main.rs b/src/main.rs index 63975a7..df2fbe4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,7 +60,7 @@ use std::collections::HashMap; fn main() { let matches = App::new("yacrd") - .version("0.4 Doduo") + .version("0.4.1 Hypno") .author("Pierre Marijon ") .about("Yet Another Chimeric Read Detector") .usage("yacrd [-i|--input] [-o|--output] [-f|--filter] diff --git a/tests/not_run.rs b/tests/not_run.rs index 83be804..c841716 100644 --- a/tests/not_run.rs +++ b/tests/not_run.rs @@ -22,7 +22,7 @@ SOFTWARE. use std::process::Command; -static HELP_MESSAGE: &'static str = "yacrd 0.4 Doduo +static HELP_MESSAGE: &'static str = "yacrd 0.4.1 Hypno Pierre Marijon Yet Another Chimeric Read Detector @@ -90,7 +90,7 @@ mod not_run { .output() .expect("Could not run yacrd"); - assert_eq!(output.stdout, b"yacrd 0.4 Doduo\n"); + assert_eq!(output.stdout, b"yacrd 0.4.1 Hypno\n"); println!("{:?}", output); }