From 6674f549f2e3bbef07e7d82612c3983273d9060a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 23 Dec 2022 10:14:19 -0800 Subject: [PATCH] version bumps and doc update --- CHANGELOG | 3 +++ docs/parsers/findmnt.md | 2 +- docs/parsers/ifconfig.md | 2 +- docs/parsers/proc.md | 2 +- jc/parsers/findmnt.py | 2 +- jc/parsers/ifconfig.py | 2 +- jc/parsers/proc.py | 2 +- 7 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6c54d8e7..c8c8bcf8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ jc changelog 20221223 v1.23.4 - Add `iwconfig` command parser +- Fix `proc` parser magic signature detection for `/proc/pid/stat` hacks +- Fix python 3.6-related issues +- Add python 3.6 to automated tests 20221216 v1.22.3 - Add Common Log Format and Combined Log Format file parser (standard and streaming) diff --git a/docs/parsers/findmnt.md b/docs/parsers/findmnt.md index 40f65812..a2206de1 100644 --- a/docs/parsers/findmnt.md +++ b/docs/parsers/findmnt.md @@ -114,4 +114,4 @@ Returns: ### Parser Information Compatibility: linux -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 0d345c9f..7e806e82 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -240,4 +240,4 @@ Returns: ### Parser Information Compatibility: linux, aix, freebsd, darwin -Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/proc.md b/docs/parsers/proc.md index 19e14f34..f54e2436 100644 --- a/docs/parsers/proc.md +++ b/docs/parsers/proc.md @@ -139,4 +139,4 @@ Returns: ### Parser Information Compatibility: linux -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/findmnt.py b/jc/parsers/findmnt.py index 699e7b38..8ae88a4e 100644 --- a/jc/parsers/findmnt.py +++ b/jc/parsers/findmnt.py @@ -93,7 +93,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.0' + version = '1.1' description = '`findmnt` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/jc/parsers/ifconfig.py b/jc/parsers/ifconfig.py index 8f0f719f..83ed94e0 100644 --- a/jc/parsers/ifconfig.py +++ b/jc/parsers/ifconfig.py @@ -219,7 +219,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '2.1' + version = '2.2' description = '`ifconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/jc/parsers/proc.py b/jc/parsers/proc.py index 4d81bb1b..5ac5013a 100644 --- a/jc/parsers/proc.py +++ b/jc/parsers/proc.py @@ -120,7 +120,7 @@ from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.0' + version = '1.1' description = '`/proc/` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com'