From e2d14ab390124792f1145398d2e1f9d4d14a26c6 Mon Sep 17 00:00:00 2001 From: Jamy Golden Date: Wed, 2 Oct 2024 13:03:38 +0200 Subject: [PATCH] Fix bug where `build` subcommand doesn't support `filename` config prop --- CHANGELOG.md | 7 +++++++ Cargo.lock | 19 ++++++++++--------- Cargo.toml | 4 ++-- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b079989..b90d3b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## Unreleased + +### Fixed + +- Fix bug where `tinty build` subcommand doesn't support `filename` + config.yaml property + ## [0.21.0] - 2024-10-01 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 12c003a..b131e71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1072,9 +1072,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.6" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", @@ -1084,9 +1084,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", @@ -1095,9 +1095,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "rgb" @@ -1318,13 +1318,14 @@ dependencies = [ [[package]] name = "tinted-builder-rust" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297e8cfca37901ff9797c035ee186052a59ceb51f292e3a621b84a1783717bee" +checksum = "a3803adb8a534796862de33cab4b94bca48a77514eeb5fd99eff367fabf035df" dependencies = [ "anyhow", "clap", "dirs", + "regex", "serde", "serde_yaml", "tinted-builder", @@ -1345,7 +1346,7 @@ dependencies = [ [[package]] name = "tinty" -version = "0.21.0" +version = "0.21.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 4d7c51e..62d821f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tinty" description = "Change the theme of your terminal, text editor and anything else with one command!" -version = "0.21.0" +version = "0.21.1" edition = "2021" license = "MIT" readme = "README.md" @@ -20,7 +20,7 @@ serde = { version = "1.0.210", features = ["derive"] } serde_yaml = "0.9.31" shell-words = "1.1.0" strip-ansi-escapes = "0.2.0" -tinted-builder-rust = "0.11.0" +tinted-builder-rust = "0.11.1" tinted-builder= "0.7.0" tinted-scheme-extractor = "0.4.0" toml = "0.8.19"