Skip to content

Commit 1387f20

Browse files
committed
Add --version option
1 parent 81f86fe commit 1387f20

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.0.3
4+
5+
- Add --version option.
6+
37
## v1.0.2
48

59
- Fix new line missing in reports.

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 = "ateam"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Andrea Frigido"]
55
license = "MIT"
66
description = "The tool that helps optimize the code review process."

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use clap::Parser;
22

33
#[derive(Parser, Debug)]
4-
#[clap(about)]
4+
#[clap(about, version)]
55
pub struct Ateam {
66
#[clap(subcommand)]
77
pub cmd: Command,

0 commit comments

Comments
 (0)