diff --git a/NEWS.rst b/NEWS.rst index 0f1f86eda06f0f5b26ba4bd3fbb93973d7050af6..570c131cc9f0356a2dfc9418bef5900fc50feaf0 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -5,7 +5,21 @@ Glances Version 3 Version 3.1.3 ============= - ... +Enhancements and new features: + + * Add a new TCP connections status plugin enhancement #1526 + * Add --enable-plugin option from the command line + +Bugs corrected: + + * Fix custom refresh time in the web UI #1548 by notFloran + * Fix issue in WebUI with empty docker stats #1546 by notFloran + * Glances fails without network interface bug #1535 + * Disable option in the configuration file is now take into account + +Others: + + * Sensors plugin is disable by default (high CPU consumption on some Liux distribution). Version 3.1.2 ============= diff --git a/docs/man/glances.1 b/docs/man/glances.1 index 6789fcc36743168c255b06cddbc2947cdbad24c2..2a7f4708f203be81435873a4812bdbac79a2eaa6 100644 --- a/docs/man/glances.1 +++ b/docs/man/glances.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "GLANCES" "1" "Oct 12, 2019" "3.1.3_BETA" "Glances" +.TH "GLANCES" "1" "Oct 12, 2019" "3.1.3" "Glances" .SH NAME glances \- An eye on your system . diff --git a/glances/__init__.py b/glances/__init__.py index e2d46fe9b37445da448ce5dde9436b1a0f031376..46658b45a850a6811d89405c1ddc33e1bf3157af 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -27,7 +27,7 @@ import signal import sys # Global name -__version__ = '3.1.3_BETA' +__version__ = '3.1.3' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3'