diff --git a/CHANGELOG b/CHANGELOG index 7671fea9..6c49e26c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ jc changelog - 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 `dir` command parser for incorrect stripping of the `D:` drive letter - Fix `proc-pid-smaps` proc parser when unknown VmFlags are output - Fix `ifconfig` command parser for incorrect stripping of leading zeros in some hex numbers - Fix `iptables` command parser when Target is blank and verbose output is used diff --git a/jc/parsers/dir.py b/jc/parsers/dir.py index 705c04b3..f4178550 100644 --- a/jc/parsers/dir.py +++ b/jc/parsers/dir.py @@ -121,7 +121,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`dir` command parser' author = 'Rasheed Elsaleh' author_email = 'rasheed@rebelliondefense.com'