Skip to content

Commit

Permalink
0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostofGoes committed Feb 4, 2023
1 parent ce5d444 commit 558facf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

**NOTE**: if any changes significantly impact your project or use case, please open an issue on [GitHub](https://github.com/GhostofGoes/getmac/issues) or email me (see git commit author info for address).

## 0.9.1 (01/24/2023)
**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.2 (02/03/2023)

### Changed
* Fix flakyness with UuidArpGetNode on MacOS by making it the last method attempted (Fixes issue [#82](https://github.com/GhostofGoes/getmac/issues/82))

## 0.9.1 (01/24/2023)

### Changed
* Deprecate Python 3.6 support (support will be removed in getmac 1.0.0)

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.1"
__version__ = "0.9.2"

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

Expand Down

0 comments on commit 558facf

Please sign in to comment.