From f98f47e257b102a5e2103be2ebd54bd80bc9397e Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Sat, 6 Oct 2018 22:45:13 -0600 Subject: [PATCH] Release 0.6.0 --- CHANGELOG.md | 7 ++++++- docs/man/getmac.1 | 4 +++- getmac/getmac.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 333e564..86c205a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # DEV (xx/xx/2018) +## Dev +* Added unit tests for the samples (Credit: @Frizz925) + + +# 0.6.0 (10/06/2018) + ## Added * Windows default interface detection if `network_request` is enabled (Credit: @cyberhobbes) * Docker container (Credit: @Komish) @@ -20,7 +26,6 @@ breaks some useful language features, such as `__future__` them would have no actual effect on execution. Instead, use `getmac.getmac.DEBUG`. ## Dev -* Added unit tests for the samples (Credit: @Frizz925) * Added example videos demonstrating usage (Credit: @fortunate-man) * Added contribution guide * Added documentation on ReadTheDocs diff --git a/docs/man/getmac.1 b/docs/man/getmac.1 index 5032e83..6c042e9 100644 --- a/docs/man/getmac.1 +++ b/docs/man/getmac.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "GETMAC" "1" "Oct 06, 2018" "0.5.0" "getmac" +.TH "GETMAC" "1" "Oct 06, 2018" "0.6.0" "getmac" .SH NAME getmac \- Cross-platform Python package to get MAC addresses . @@ -354,6 +354,8 @@ Christopher Goes (@ghostofgoes) \- Author and maintainer .IP \(bu 2 Calvin Tran (@cyberhobbes) \- Windows interface detection improvements .IP \(bu 2 +Izra Faturrahman (@Frizz925) \- Unit tests using the platform samples +.IP \(bu 2 Jose Gonzalez (@Komish) \- Docker container and Docker testing .IP \(bu 2 @fortunate\-man \- Awesome usage videos diff --git a/getmac/getmac.py b/getmac/getmac.py index a0aba28..c4e260d 100644 --- a/getmac/getmac.py +++ b/getmac/getmac.py @@ -28,7 +28,7 @@ except ImportError: DEVNULL = open(os.devnull, 'wb') # Py2 -__version__ = '0.5.0' +__version__ = '0.6.0' DEBUG = 0 PORT = 55555