chore(version): bump to v0.1.2 #9
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.
|
||||
|
||||
## [0.1.2] - 2023-07-03
|
||||
|
||||
### Features
|
||||
|
||||
- Implemented quiet flag
|
||||
|
||||
## [0.1.1] - 2023-07-03
|
||||
|
||||
### Bug Fixes
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -179,7 +179,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gg"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"clap_mangen",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue