diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b05022..7df20dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ **Announcement**: Compatibility with Python versions older than 3.7 (2.7, 3.4, 3.5, and 3.6) is deprecated and will be removed in getmac 1.0.0. If you are stuck on an unsupported Python, consider loosely pinning the version of this package in your dependency list, e.g. `getmac<1.0.0` or `getmac~=0.9.0`. +## 0.9.4 (06/01/2023) + +### Added +* Support BusyBox's ``arping`` + +### Changed +* Improve how ARP is handled. If ``ArpFile`` method succeeds, use it instead of ``ArpingHost`` (this should fix [#86](https://github.com/GhostofGoes/getmac/issues/86), for realsies this time). +* Speed up the first call to ``ArpingHost`` +* Fix FORCE_METHOD not being respected for IPv4 macs + ## 0.9.3 (03/16/2023) ### Changed diff --git a/getmac/getmac.py b/getmac/getmac.py index 6c3844c..efb46d4 100644 --- a/getmac/getmac.py +++ b/getmac/getmac.py @@ -56,7 +56,7 @@ if not log.handlers: log.addHandler(logging.NullHandler()) -__version__ = "0.9.3" +__version__ = "0.9.4" PY2 = sys.version_info[0] == 2 # type: bool