Skip to content

Commit

Permalink
Merge pull request #29 from hcdenbakker/clippy
Browse files Browse the repository at this point in the history
bump up to version 1.0.0
  • Loading branch information
hcdenbakker authored Dec 10, 2021
2 parents 6ecfebe + 63393da commit d90b5d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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 = "sepia"
version = "0.1.0"
version = "1.0.0"
authors = ["henk den bakker"]
edition = "2018"

Expand Down
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit d90b5d3

Please sign in to comment.