Skip to content

Commit

Permalink
0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostofGoes committed Jun 1, 2023
1 parent e5acc6d commit 51364ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion getmac/getmac.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 51364ae

Please sign in to comment.