From 3e17466de596dae80d8e5eb60979bf15fcc26995 Mon Sep 17 00:00:00 2001 From: release-plz Date: Tue, 15 Aug 2023 15:22:55 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 43 ++++++++++++++++++++++++ Cargo.lock | 4 +-- Cargo.toml | 4 +-- material-color-utilities-rs/CHANGELOG.md | 18 ++++++++++ material-color-utilities-rs/Cargo.toml | 2 +- 5 files changed, 66 insertions(+), 5 deletions(-) create mode 100644 material-color-utilities-rs/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e2e153..bb7db52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/InioX/matugen/compare/matugen-v0.9.0...matugen-v0.10.0) - 2023-08-15 + +### Added +- *(scheme)* add `android_scheme` keywords +- *(scheme)* add `android_scheme` +- *(arguments)* add `--show-colors` flag and disable showing colors by default +- *(show_colors)* show light, dark and amoled at once in a table +- *(arguments)* remove `lightmode` and `amoled` +- *(config)* rename `scheme` to `mode` in template config +- *(arguments)* add `mode` to replace `lightmode` and `amoled` +- *(template)* add `Light`,`Dark`,`Amoled` options for each template +- add `--dry-run` flag +- *(template)* add `source_color` +- show generated colors inside a table instead + +### Fixed +- *(show_color)* make the dark and amoled colors use right schemes +- remove debug stuff +- dark and amoled modes being switched +- correct blue and green in `get_source_color` +- show colors AFTER running commands + +### Other +- *(template)* update keyword names +- *(`scheme_android`)* add TODO note for amoled scheme +- add DEFAULT_CONFIG const +- *(get_source_color)* move to color file +- rename `Commands` struct to `Source` +- make the colors vec a const +- add gifs for modes, palettes and `--other-colors` +- update all tapes +- *(tapes)* change the output directory +- remove unnecessary imports +- fix usage of commands +- add an explanation for `mode` in template config +- rename `scheme` to `mode` +- add `source color` keyword +- format with `cargo fmt` +- *(show_color)* use `format_argb_as_rgb` +- format with `cargo fmt` +- change repository address +- remove useless gifs + ## [0.9.0](https://github.com/InioX/Matugen/compare/matugen-v0.8.4...matugen-v0.9.0) - 2023-08-08 ### Added diff --git a/Cargo.lock b/Cargo.lock index e0829d6..fa47ab3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -617,7 +617,7 @@ dependencies = [ [[package]] name = "ini-material-color-utilities-rs" -version = "0.3.0" +version = "0.4.0" dependencies = [ "ahash", "assert_approx_eq", @@ -720,7 +720,7 @@ dependencies = [ [[package]] name = "matugen" -version = "0.9.0" +version = "0.10.0" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index bf741ec..0af0a57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matugen" -version = "0.9.0" +version = "0.10.0" description = "A material you color generation tool with templates" repository = "https://github.com/InioX/matugen" categories = ["command-line-utilities"] @@ -16,7 +16,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -material-color-utilities-rs = { version= "0.3.0" ,package = "ini-material-color-utilities-rs", path = "material-color-utilities-rs", features = ["serde", "clap"] } +material-color-utilities-rs = { version = "0.4.0",package = "ini-material-color-utilities-rs", path = "material-color-utilities-rs", features = ["serde", "clap"] } image = "0.24.6" owo-colors = "3.5.0" clap = { version = "4.2.4", features = ["derive"] } diff --git a/material-color-utilities-rs/CHANGELOG.md b/material-color-utilities-rs/CHANGELOG.md new file mode 100644 index 0000000..d42317c --- /dev/null +++ b/material-color-utilities-rs/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.4.0](https://github.com/InioX/matugen/compare/ini-material-color-utilities-rs-v0.3.0...ini-material-color-utilities-rs-v0.4.0) - 2023-08-15 + +### Added +- *(scheme)* add `android_scheme` keywords +- *(scheme)* add `android_scheme` + +### Other +- *(`scheme_android`)* add TODO note for amoled scheme +- format with `cargo fmt` +- format with `cargo fmt` diff --git a/material-color-utilities-rs/Cargo.toml b/material-color-utilities-rs/Cargo.toml index 23e3135..cb38afc 100644 --- a/material-color-utilities-rs/Cargo.toml +++ b/material-color-utilities-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ini-material-color-utilities-rs" -version = "0.3.0" +version = "0.4.0" edition = "2021" license-file = "./LICENSE" description = "A rust port of Material Design color utilities"