diff --git a/CHANGELOG b/CHANGELOG index 253c3af9..1faa2204 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,7 @@ jc changelog - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name +- Fix `traceroute` parser to support extreme IPv6 cases - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index d1a6b5fc..36d74d82 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -123,7 +123,7 @@ from copy import deepcopy class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = '`traceroute` and `traceroute6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com'