diff --git a/CHANGELOG b/CHANGELOG index b6396c11..89dd9665 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,10 @@ jc changelog -20240922 v1.25.4 +20241018 v1.25.4 - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 2fabd41b..3d241334 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.2' + version = '1.3' description = '`bluetoothctl` command parser' author = 'Jake Ob' author_email = 'iakopap at gmail.com'