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'