chore(version): bump to v0.1.2 #9

Merged
cafkafk merged 6 commits from dev into main 2023-07-03 18:22:49 +02:00
4 changed files with 9 additions and 3 deletions
Showing only changes of commit 73b73150f8 - Show all commits

View file

@ -2,6 +2,12 @@
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
### Bug Fixes

2
Cargo.lock generated
View file

@ -179,7 +179,7 @@ dependencies = [
[[package]]
name = "gg"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"clap",
"clap_mangen",

View file

@ -1,6 +1,6 @@
[package]
name = "gg"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Christina Sørensen"]
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.code_of_conduct => println!("{}", utils::strings::INTERACTIVE_COC),
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 {