chore(version): bump to v0.1.2

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
Christina Sørensen 2023-07-03 18:19:48 +02:00 committed by Christina Sørensen
parent f958739863
commit c62a0a720f
4 changed files with 9 additions and 3 deletions

View file

@ -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
View file

@ -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",

View file

@ -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"

View file

@ -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 {