From 10ee1b314704e8f4638c8e46ddf2025168f9bd81 Mon Sep 17 00:00:00 2001 From: release-plz Date: Sun, 17 Sep 2023 13:14:38 +0000 Subject: [PATCH] chore: release Signed-off-by: release-plz --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- material-color-utilities-rs/CHANGELOG.md | 9 +++++++++ material-color-utilities-rs/Cargo.toml | 2 +- 5 files changed, 34 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb7db52..c8cb1a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/InioX/matugen/compare/matugen-v0.10.0...matugen-v0.10.1) - 2023-09-17 + +### Added +- *(COLORS_ANDROID)* add `source_color` +- *(template)* add `hsl` and `hsla` formats +- *(template)* add `dark`, `amoled` and `light` schemes to every template + +### Fixed +- *(android_scheme)* fix `light` and `pure_dark` colors + +### Other +- remove build warnings (closes [#17](https://github.com/InioX/matugen/pull/17)) +- add `--json` docs +- format with cargofmt +- add --json flag +- run formatter +- update note markdown +- *(nixos)* add specific version for flake +- move some stuff into their own functions + ## [0.10.0](https://github.com/InioX/matugen/compare/matugen-v0.9.0...matugen-v0.10.0) - 2023-08-15 ### Added diff --git a/Cargo.lock b/Cargo.lock index 92281e4..3594043 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -617,7 +617,7 @@ dependencies = [ [[package]] name = "ini-material-color-utilities-rs" -version = "0.4.0" +version = "0.4.1" dependencies = [ "ahash", "assert_approx_eq", @@ -720,7 +720,7 @@ dependencies = [ [[package]] name = "matugen" -version = "0.10.0" +version = "0.10.1" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index e4e9f8d..9d43a8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matugen" -version = "0.10.0" +version = "0.10.1" 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.4.0",package = "ini-material-color-utilities-rs", path = "material-color-utilities-rs", features = ["serde", "clap"] } +material-color-utilities-rs = { version = "0.4.1",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 index d42317c..eb57699 100644 --- a/material-color-utilities-rs/CHANGELOG.md +++ b/material-color-utilities-rs/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/InioX/matugen/compare/ini-material-color-utilities-rs-v0.4.0...ini-material-color-utilities-rs-v0.4.1) - 2023-09-17 + +### Fixed +- *(android_scheme)* fix `light` and `pure_dark` colors + +### Other +- remove build warnings (closes [#17](https://github.com/InioX/matugen/pull/17)) +- format with cargofmt + ## [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 diff --git a/material-color-utilities-rs/Cargo.toml b/material-color-utilities-rs/Cargo.toml index cb38afc..71ca38e 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.4.0" +version = "0.4.1" edition = "2021" license-file = "./LICENSE" description = "A rust port of Material Design color utilities"