summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2019-10-12 11:32:05 +0200
committernicolargo <nicolas@nicolargo.com>2019-10-12 11:32:05 +0200
commite29a153d93a740397d2c7cfa256596240b9bc2b9 (patch)
tree5c42964a9f21f9d174eae064dbd68b7539f5b2b3
parent16a9ce3ad1b0faf91bf791397743e0eac4b38389 (diff)
version 3.1.3v3.1.3
-rw-r--r--NEWS.rst16
-rw-r--r--docs/man/glances.12
-rw-r--r--glances/__init__.py2
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 <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'