diff --git a/NEWS.rst b/NEWS.rst index ec6cfcc9392ec070a6897f1caa7be904f0fa3cf5..37570a3b327bc09588a004d00a80fe18b5c6dfc4 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 786dd150c7961f900458a743842257cb1753d21c..b8ccf04515d1d37fc34e10e84219d4ec629cc0f5 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 bec9df711737a8e79884562b4fb9c89b66abb7ef..b42ec3ffd9bdf8d3895435ef17229950860bea4e 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 ' __license__ = 'LGPLv3' diff --git a/setup.py b/setup.py index 6177ee9c2ed8047f00e2fcc92f7d465bfc8a215e..9a28309ea0e0779840c2f725a134e584dd3b224c 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' ] )