From e29a153d93a740397d2c7cfa256596240b9bc2b9 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 12 Oct 2019 11:32:05 +0200 Subject: [PATCH] version 3.1.3 --- NEWS.rst | 16 +++++++++++++++- docs/man/glances.1 | 2 +- glances/__init__.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 0f1f86ed..570c131c 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 6789fcc3..2a7f4708 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 e2d46fe9..46658b45 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'