From 37b37f9f0653179afede17ff4f2cd61c85efab88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 12 Sep 2018 15:55:29 +0200 Subject: [PATCH] Release version 0.14, add CHANGES.rst entry Fixes https://github.com/fedora-python/python-ethtool/issues/49 Merges https://github.com/fedora-python/python-ethtool/pull/51 --- CHANGES.rst | 11 +++++++++++ setup.py | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9e41cbd..788527e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Changelog ========= +0.14 +---- +Wed Sep 12 2018 Miro Hrončok + +- Declared project as bugfix only from now on +- Support Python 3.7 +- Fix important issues reported by static analysis +- Fix installation on non-UTF-8 locales on Python 3.5 and 3.6 +- Added set_gso(), get_gro() and set_gro() functions +- Added installation instructions + 0.13 ---- Tue Jun 13 2017 Miro Hrončok diff --git a/setup.py b/setup.py index d7b74eb..681ddd5 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except ImportError: import subprocess as commands -version = '0.13' +version = '0.14' class PkgConfigExtension(Extension): @@ -114,6 +114,7 @@ def libraries(self, value): keywords='network networking ethernet tool ethtool', classifiers=[ + 'Development Status :: 7 - Inactive', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Operating System :: POSIX :: Linux',