Skip to content

Commit 260c7b0

Browse files
committed
version 0.4 Doduo
1 parent b40e7da commit 260c7b0

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yacrd"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Pierre Marijon <[email protected]>"]
55

66
exclude = ["image/*", "validation/*", "tests/*"]

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ conda install yacrd
5858
```
5959
git clone https://github.com/natir/yacrd.git
6060
cd yacrd
61-
git checkout v0.3
61+
git checkout v0.4
6262
6363
cargo build
6464
cargo test
@@ -71,7 +71,7 @@ cargo install
7171
2)
7272

7373
```
74-
yacrd 0.3 Ninetales
74+
yacrd 0.3 Doduo
7575
Pierre Marijon <[email protected]>
7676
Yet Another Chimeric Read Detector
7777

rustfmt.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use std::collections::HashMap;
6060

6161
fn main() {
6262
let matches = App::new("yacrd")
63-
.version("0.4 Mew")
63+
.version("0.4 Doduo")
6464
.author("Pierre Marijon <[email protected]>")
6565
.about("Yet Another Chimeric Read Detector")
6666
.usage("yacrd [-i|--input] <input1, input2, …> [-o|--output] <output> [-f|--filter] <file1, file2, …>

tests/not_run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SOFTWARE.
2222

2323
use std::process::Command;
2424

25-
static HELP_MESSAGE: &'static str = "yacrd 0.4 Mew
25+
static HELP_MESSAGE: &'static str = "yacrd 0.4 Doduo
2626
Pierre Marijon <[email protected]>
2727
Yet Another Chimeric Read Detector
2828
@@ -90,7 +90,7 @@ mod not_run {
9090
.output()
9191
.expect("Could not run yacrd");
9292

93-
assert_eq!(output.stdout, b"yacrd 0.4 Mew\n");
93+
assert_eq!(output.stdout, b"yacrd 0.4 Doduo\n");
9494
println!("{:?}", output);
9595
}
9696

0 commit comments

Comments
 (0)