From 5394d7f62d0df132761416f87cafed1c26f9bed4 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 2 Apr 2025 11:37:24 -0700 Subject: [PATCH] doc update --- CHANGELOG | 3 ++- jc/parsers/bluetoothctl.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2752b80e..38774f41 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ jc changelog -20250331 v1.25.5 +20250402 v1.25.5 - Add `amixer` command parser +- Fix `bluetoothctl` parser failing to parse controllers with power state prop - Fix `lsblk` command parser to support multiple mountpoints. Also, added byte conversions for size fields. - Fix `time` command parser for output that does not contain centiseconds diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 370b1d9a..16943bcb 100644 --- a/jc/parsers/bluetoothctl.py +++ b/jc/parsers/bluetoothctl.py @@ -112,7 +112,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`bluetoothctl` command parser' author = 'Jake Ob' author_email = 'iakopap at gmail.com'