diff --git a/CHANGELOG b/CHANGELOG index a4f892e0..7671fea9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ jc changelog 20260330 v1.25.7 - Add `typeset` and `declare` Bash internal command parser to convert variables simple arrays, and associative arrays along with object metadata +- Enhance `pip-show` command parser to add `-f` show files support - Enhance `rsync` and `rsync-s` parsers to add `--stats` or `--info=stats[1-3]` fields - Fix `hashsum` command parser to correctly parse the `mode` indicator - Fix `proc-pid-smaps` proc parser when unknown VmFlags are output diff --git a/jc/parsers/pip_show.py b/jc/parsers/pip_show.py index 7c372f60..27932060 100644 --- a/jc/parsers/pip_show.py +++ b/jc/parsers/pip_show.py @@ -27,7 +27,9 @@ Schema: "location": string, "requires": string, "required_by": string, - "files": list + "files": [ + string + ] } ] @@ -67,7 +69,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.5' + version = '1.6' description = '`pip show` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com'