From 921133f3ac2e9554ad85f829e5d870342e8054e5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jun 2024 08:47:24 -0700 Subject: [PATCH] version bump --- CHANGELOG | 3 +++ jc/lib.py | 2 +- man/jc.1 | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0c91429c..27a19ce8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20240618 v1.25.4 +- Fix `mount` parser for cases where there are spaces in the filesystem name + 20240609 v1.25.3 - Enhance `bluetoothctl` parser with added `battery_percentage` field - Enhance `git-log` standard and streaming parsers with added `lines_changed` field under `file_stats` diff --git a/jc/lib.py b/jc/lib.py index a313d7c7..9bcd9a2a 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -10,7 +10,7 @@ from jc import appdirs from jc import utils -__version__ = '1.25.3' +__version__ = '1.25.4' parsers: List[str] = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index 51083396..65d5df25 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-06-09 1.25.3 "JSON Convert" +.TH jc 1 2024-06-18 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/setup.py b/setup.py index bbcf9414..321d2760 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.3', + version='1.25.4', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',