chore(version): bump to v0.1.2
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
038ddd94b6
commit
73b73150f8
4 changed files with 9 additions and 3 deletions
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.1.2] - 2023-07-03
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Implemented quiet flag
|
||||||
|
|
||||||
## [0.1.1] - 2023-07-03
|
## [0.1.1] - 2023-07-03
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -179,7 +179,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gg"
|
name = "gg"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"clap_mangen",
|
"clap_mangen",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gg"
|
name = "gg"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Christina Sørensen"]
|
authors = ["Christina Sørensen"]
|
||||||
repository = "https://github.com/cafkafk/gg"
|
repository = "https://github.com/cafkafk/gg"
|
||||||
|
|
|
@ -67,7 +67,7 @@ fn main() {
|
||||||
args if args.warranty => println!("{}", utils::strings::INTERACTIVE_WARRANTY),
|
args if args.warranty => println!("{}", utils::strings::INTERACTIVE_WARRANTY),
|
||||||
args if args.code_of_conduct => println!("{}", utils::strings::INTERACTIVE_COC),
|
args if args.code_of_conduct => println!("{}", utils::strings::INTERACTIVE_COC),
|
||||||
args if args.quiet => settings::QUIET.store(true, Ordering::Relaxed),
|
args if args.quiet => settings::QUIET.store(true, Ordering::Relaxed),
|
||||||
args if args.no_emoji => settings::EMOJI.store(true, Ordering::Relaxed),
|
args if args.no_emoji => settings::EMOJIS.store(true, Ordering::Relaxed),
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
match &mut args.command {
|
match &mut args.command {
|
||||||
|
|
Loading…
Reference in a new issue