Skip to content

Commit 51364ae

Browse files
committed
0.9.4
1 parent e5acc6d commit 51364ae

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
**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`.
66

7+
## 0.9.4 (06/01/2023)
8+
9+
### Added
10+
* Support BusyBox's ``arping``
11+
12+
### Changed
13+
* 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).
14+
* Speed up the first call to ``ArpingHost``
15+
* Fix FORCE_METHOD not being respected for IPv4 macs
16+
717
## 0.9.3 (03/16/2023)
818

919
### Changed

getmac/getmac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
if not log.handlers:
5757
log.addHandler(logging.NullHandler())
5858

59-
__version__ = "0.9.3"
59+
__version__ = "0.9.4"
6060

6161
PY2 = sys.version_info[0] == 2 # type: bool
6262

0 commit comments

Comments
 (0)