Skip to content

Commit

Permalink
0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostofGoes committed Dec 8, 2019
1 parent 994c415 commit 95d3609
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@
or send me an email (see git commit author info for address).

## NEXT (XX/XX/XXXX)
* TBD


## 0.8.2 (12/07/2019)

**Announcement**: Python 2 compatibility will be dropped in getmac 1.0.0, which will be finished sometime in 2020. If you are stuck on Python 2, consider loosely pinning the version in your dependencies list, e.g. `getmac<1`. I will continue to fix reported bugs and accept patches for the last release before 1.0.0, however active development will cease and new features will not be backported.

### Changed
* Added warning about Python 2 compatibility being dropped in 1.0.0
* Officially support Python 3.8
* Documented a known issue with looking up IP of a local interface on Linux/WSL (See the "Known Issues" section in the README)
* Added lookup using `arping` as last resort
* Added remote host lookup using `arping` as last resort

### Dev
* Standardized formatting on [Black](https://github.com/psf/black)
Expand Down
2 changes: 1 addition & 1 deletion getmac/getmac.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
log = logging.getLogger("getmac")
log.addHandler(logging.NullHandler())

__version__ = "0.8.1"
__version__ = "0.8.2"
PY2 = sys.version_info[0] == 2

# Configurable settings
Expand Down

0 comments on commit 95d3609

Please sign in to comment.