-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from hcdenbakker/clippy
bump up to version 1.0.0
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sepia" | ||
version = "0.1.0" | ||
version = "1.0.0" | ||
authors = ["henk den bakker"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,14 +24,14 @@ static GLOBAL: System = System; | |
|
||
fn main() { | ||
let matches = App::new("sepia") | ||
.version("0.1.0") | ||
.version("1.0.0") | ||
.author("Henk C. den Bakker <[email protected]>") | ||
.about("a taxonomy centered read classifier and more") | ||
.setting(AppSettings::ArgRequiredElseHelp) | ||
.subcommand( | ||
SubCommand::with_name("build") | ||
.about("builds an index") | ||
.version("0.1") | ||
.version("1.0") | ||
.author("Henk C. den Bakker <[email protected]>") | ||
.setting(AppSettings::ArgRequiredElseHelp) | ||
.arg( | ||
|
@@ -104,7 +104,7 @@ fn main() { | |
.subcommand( | ||
SubCommand::with_name("classify") | ||
.about("classifies reads using an lca approach") | ||
.version("0.1") | ||
.version("1.0") | ||
.author("Henk den Bakker. <[email protected]>") | ||
.setting(AppSettings::ArgRequiredElseHelp) | ||
.arg( | ||
|
@@ -185,7 +185,7 @@ fn main() { | |
.subcommand( | ||
SubCommand::with_name("batch_classify") | ||
.about("classifies batch of samples reads") | ||
.version("0.2") | ||
.version("1.0") | ||
.author("Henk den Bakker. <[email protected]>") | ||
.setting(AppSettings::ArgRequiredElseHelp) | ||
.arg( | ||
|