Fix --version to show the same version as cargo

This commit is contained in:
Denis Redozubov 2023-07-25 11:29:59 +04:00
parent f8d214bce7
commit 007bdd996a
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ use DrumPart::*;
#[derive(Debug, Parser, Clone)]
#[command(name = "Polyrhythmix")]
#[command(author = "Denis Redozubov <denis.redozubov@gmail.com>")]
#[command(version = "0.1")]
#[command(version = "0.1.0")]
#[command(about = "Polyrhythmically-inclinded Midi Drum generator", long_about = None)]
struct Cli {
#[arg(short = 'K', long = "kick", default_value = None, help = "Kick drum pattern")]
@ -59,7 +59,7 @@ fn validate_and_parse_part(
Some(pattern) => match dsl::groups(pattern.as_str()) {
Ok((_, groups)) => {
patterns.insert(part, groups);
}
},
Err(_) => {
panic!("{} pattern is malformed.", part_to_string(part))
}