Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Mar 9, 2024
1 parent 1287c16 commit 8374bba
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 0.4.0

- Fix incorrect match reporting level (files vs. lines) in some cases
- Fix incorrect line match reporting despite of `match` preconditions not
satisfied
- Fix first parser eating away first character of exclude regexps
- Improve ruleset syntax
- Don't use backslash escaping in rule titles, literal `]` may now be
written as `]]`
- Don't use backslash escaping in regexps - it's not really needed as
(almost) any framing charactes are allowed
- Support unicode framing characters in regexps
- Disallow brackets as regexp framing characters to avoid confusion
- Implement parsed config dumping (may be useful in future for config
format migration)
- Allow to delimit tags with commas in CLI (`--ignore-tags=foo,bar,baz`)
- Make tags case insensitive
- Improve glob and regexp matching performance
- Don't panic with unhelpful message when non-directory is specified as root
- No longer rely on rust unstable features and thus require rust nightly
- Make some features conditionally compiled

## 0.3.0

- Switch to custom config format
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "omnilinter"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
readme = "README.md"
Expand Down

0 comments on commit 8374bba

Please sign in to comment.