From 2557bc071a285205199fef6e72192d85de5abb23 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 4 Apr 2024 19:52:14 +0300 Subject: [PATCH] Release 0.7.0 --- CHANGES.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9029091..69d1839 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +## 0.7.0 + +- Implement rule templates: tags and conditions from a rule named + `[!template]` will be prepended to each following rule. Use bodyless + `[!template]` if you need to reset the template. +- Fix incorrect glob matching bug when there were file patterns with + the only difference in a leading slash (such as `/README.md` and + `README.md`) in the ruleset. +- `--dump-config` option is now considered internal and is hidden from + the help. + ## 0.6.0 - Expand tilde in `root` paths. diff --git a/Cargo.lock b/Cargo.lock index 345e75c..8fee99e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -510,7 +510,7 @@ dependencies = [ [[package]] name = "omnilinter" -version = "0.6.0" +version = "0.7.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 9286a1c..4eb88cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "omnilinter" description = "General purpose bulk linter" -version = "0.6.0" +version = "0.7.0" edition = "2021" authors = ["Dmitry Marakasov "] license = "GPL-3.0-or-later"