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',