diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-10-17 10:01:23 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-10-17 10:15:27 +0200 |
commit | da12170e694872fd91f81a27748eed07dc3f75cc (patch) | |
tree | db17e301360b83327ac47881cb81d409bcfef46b /anissue.cabal | |
parent | bb88dbe078a0f16c0626a2825fd9f4d6bc775875 (diff) |
add filter operators
The following filter expressions are now additionally valid:
```
--filter @tag <=VALUE
--filter @tag <VALUE
--filter @tag >=VALUE
--filter @tag >VALUE
```
Note that negation needs some re-work. Currently, only `--filter !@tag
<VALUE` is valid, and `--filter @tag !<VALUE` is not. The first version
may not behave as you would expect it.
A tracking issue has been created.
Note that without typing tag values, all comparisons perform
lexicographically on `String`s.
Diffstat (limited to 'anissue.cabal')
-rw-r--r-- | anissue.cabal | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/anissue.cabal b/anissue.cabal index 7157c4e..8988ebf 100644 --- a/anissue.cabal +++ b/anissue.cabal @@ -86,6 +86,7 @@ executable anissue -- Other library packages from which modules are imported. build-depends: base ^>=4.16.4.0, aeson, + attoparsec, binary, bytestring, directory, |