From b054b1b782aa49bf2539f3f57087c914a2797b4e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 7 Sep 2024 19:50:08 -0700 Subject: [PATCH] doc update --- CHANGELOG | 1 + docs/parsers/ethtool.md | 2 +- docs/parsers/ifconfig.md | 2 +- docs/parsers/ip_address.md | 2 +- docs/parsers/ping_s.md | 2 +- docs/parsers/uptime.md | 2 +- jc/parsers/ping_s.py | 2 +- man/jc.1 | 2 +- 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 509b50d8..182fb930 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20240907 v1.25.4 +- Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Fix `mount` parser for cases where there are spaces in the filesystem name diff --git a/docs/parsers/ethtool.md b/docs/parsers/ethtool.md index bd0946b0..b60d3e01 100644 --- a/docs/parsers/ethtool.md +++ b/docs/parsers/ethtool.md @@ -194,4 +194,4 @@ Compatibility: linux Source: [`jc/parsers/ethtool.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ethtool.py) -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ifconfig.md b/docs/parsers/ifconfig.md index e9b0ddc9..c297e839 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -242,4 +242,4 @@ Compatibility: linux, aix, freebsd, darwin Source: [`jc/parsers/ifconfig.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ifconfig.py) -Version 2.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ip_address.md b/docs/parsers/ip_address.md index efdcc21f..4c85908b 100644 --- a/docs/parsers/ip_address.md +++ b/docs/parsers/ip_address.md @@ -556,4 +556,4 @@ Source: [`jc/parsers/ip_address.py`](https://github.com/kellyjonbrazil/jc/blob/m This parser can be used with the `--slurp` command-line option. -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ping_s.md b/docs/parsers/ping_s.md index 813dee9c..7a3d3da9 100644 --- a/docs/parsers/ping_s.md +++ b/docs/parsers/ping_s.md @@ -109,4 +109,4 @@ Compatibility: linux, darwin, freebsd Source: [`jc/parsers/ping_s.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ping_s.py) -Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/uptime.md b/docs/parsers/uptime.md index d26cddbf..0e19dab6 100644 --- a/docs/parsers/uptime.md +++ b/docs/parsers/uptime.md @@ -92,4 +92,4 @@ Source: [`jc/parsers/uptime.py`](https://github.com/kellyjonbrazil/jc/blob/maste This parser can be used with the `--slurp` command-line option. -Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/ping_s.py b/jc/parsers/ping_s.py index 46c4885a..c74bd24b 100644 --- a/jc/parsers/ping_s.py +++ b/jc/parsers/ping_s.py @@ -88,7 +88,7 @@ from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.5' + version = '1.6' description = '`ping` and `ping6` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/man/jc.1 b/man/jc.1 index 65d5df25..0c4c997e 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-06-18 1.25.4 "JSON Convert" +.TH jc 1 2024-09-07 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings