From 1c0a35dff8fa576346530c25359c869b500e9882 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 27 Feb 2026 11:37:58 -0800 Subject: [PATCH] version bump --- CHANGELOG | 4 +++- jc/lib.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d911bb90..67782fa5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ jc changelog -202501012 v1.25.6 +20260227 v1.25.7 + +20251012 v1.25.6 - Add `net-localgroup` Windows command parser - Add `net-user` Windows command parser - Add `route-print` Windows command parser diff --git a/jc/lib.py b/jc/lib.py index c21a0284..7d1ea9d3 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -10,7 +10,7 @@ from jc import appdirs from jc import utils -__version__ = '1.25.6' +__version__ = '1.25.7' parsers: List[str] = [ 'acpi', diff --git a/setup.py b/setup.py index 6b6b6dce..71a891a3 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.25.6', + version='1.25.7', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',