summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-01-23 11:07:36 +0100
committernicolargo <nicolas@nicolargo.com>2021-01-23 11:07:36 +0100
commit1b36ed92a213e56a5801a4d962de7e9164def927 (patch)
treed1732bf20dfe275ff505a9ce5352a998c65a17b6
parentfe0204a585462baaa82159aa3db44896a005c386 (diff)
version 3.1.6
-rw-r--r--NEWS.rst46
-rw-r--r--docs/man/glances.14
-rw-r--r--glances/__init__.py2
-rwxr-xr-xsetup.py1
4 files changed, 48 insertions, 5 deletions
diff --git a/NEWS.rst b/NEWS.rst
index ec6cfcc9..37570a3b 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -5,8 +5,50 @@ Glances Version 3
Version 3.1.6
=============
-Under development.
-See milestone here ==> https://github.com/nicolargo/glances/milestone/46
+Enhancements and new features:
+
+ * Kill a process from the Curses interface #1444
+ * Manual refresh on F5 in the Curses interface #1753
+ * Hide function in sensors section #1590
+ * Enhancement Request: .conf parameter for AMP #1690
+ * Password for Web/Browser mode #1674
+ * Unable to connect to Influxdb 2.0 #1776
+ * ci: fix release process and improve build speeds #1782
+ * Cache cpuinfo output #1700
+ * sort by clicking improvements and bug #1578
+ * Allow embedded AMP python script to be placed in a configurable location #1734
+ * Add attributes to stdout/stdout-csv plugins #1733
+ * Do not shorten container names #1723
+
+Bugs corrected:
+
+ * Version tag for docker image packaging #1754
+ * Unusual characters in cmdline cause lines to disappear and corrupt the display #1692
+ * UnicodeDecodeError on any command with a utf8 character in its name #1676
+ * Docker image is not up to date install #1662
+ * Add option to set the strftime format #1785
+ * fix: docker dev build contains all optional requirements #1779
+ * GPU information is incomplete via web #1697
+ * [WebUI] Fix display of null values for GPU plugin #1773
+ * crash on startup on Illumos when no swap is configured #1767
+ * Glances crashes with 2 GPUS bug #1683
+ * [Feature Request] Filter Docker containers#1748
+ * Error with IP Plugin : object has no attribute #1528
+ * docker-compose #1760
+ * [WebUI] Fix sort by disk io #1759
+ * Connection to MQTT server failst #1705
+ * Misleading image tag latest-arm needs contributor packaging #1419
+ * Docker nicolargo/glances:latest missing arm builds? #1746
+ * Alpine image is broken packaging #1744
+ * RIP Alpine? needs contributor packaging #1741
+ * Manpage improvement documentation #1743
+ * Make build reproducible packaging #1740
+ * Automated multiarch builds for docker #1716
+ * web ui of glances is not coming #1721
+ * fixing command in json.rst #1724
+ * Fix container rss value #1722
+ * Alpine Image is broken needs test packaging #1720
+ * Fix gpu plugin to handle multiple gpus with different reporting capabilities bug #1634
Version 3.1.5
=============
diff --git a/docs/man/glances.1 b/docs/man/glances.1
index 786dd150..b8ccf045 100644
--- a/docs/man/glances.1
+++ b/docs/man/glances.1
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
-.TH "GLANCES" "1" "Dec 31, 2020" "3.1.6_b1" "Glances"
+.TH "GLANCES" "1" "Jan 23, 2021" "3.1.6" "Glances"
.SH NAME
glances \- An eye on your system
.
@@ -841,6 +841,6 @@ $ glances –browser
.sp
Nicolas Hennion aka Nicolargo <\fI\%contact@nicolargo.com\fP>
.SH COPYRIGHT
-2020, Nicolas Hennion
+2021, Nicolas Hennion
.\" Generated by docutils manpage writer.
.
diff --git a/glances/__init__.py b/glances/__init__.py
index bec9df71..b42ec3ff 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -29,7 +29,7 @@ import sys
# Global name
# Version should start and end with a numerical char
# See https://packaging.python.org/specifications/core-metadata/#version
-__version__ = '3.1.6_b1'
+__version__ = '3.1.6'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'
diff --git a/setup.py b/setup.py
index 6177ee9c..9a28309e 100755
--- a/setup.py
+++ b/setup.py
@@ -135,6 +135,7 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
'Topic :: System :: Monitoring'
]
)