diff --git a/NEWS.rst b/NEWS.rst index 134de7d9bccf36708b2e7fdccfbd291979aba368..eb816245b2f6eeefc9c6abb6bf155128dcbe5151 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -5,7 +5,35 @@ Glances Version 3 Version 3.1.4 ============= - ... Under development ... +Enhancements and new features: + + * FS filtering can be done on device name documentation enhancement #1606 + * Feature request: Include hostname in all (e.g. kafka) exports #1594 + * Threading.isAlive was removed in Python 3.9. Use is_alive. #1585 + * log file under public/shared tmp/ folders must not have deterministic name #1575 + * Install / Systemd Debian documentation #1560 + * Display load as percentage when Irix mode is disable #1554 + * [WebUI] Add a new TCP connections status plugin new feature #1547 + * Make processes.sort_key configurable enhancement #1536 + * NVIDIA GPU temperature #1523 + * Feature request: HDD S.M.A.R.T. #1288 + +Bugs corrected: + + * Glances 3.1.3: when no network interface with Public address #1615 + * NameError: name 'logger' is not defined #1602 + * Disk IO stats missing after upgrade to 5.5.x kernel #1601 + * Glances don't want to run on Crostini (LXC Container, Debian 10, python 3.7.3) #1600 + * Kafka key name needs to be bytes #1593 + * Cant start glances with glances --export mqtt #1581 + * [WEBUI] AMP plugins is not displayed correctly in the Web Interface #1574 + * Unhandled AttributeError when no config files found #1569 + * Glances writing lots of Docker Error message in logs file enhancement #1561 + * GPU stats not showing on mobile web view bug needs test #1555 + * KeyError: b'Rss:' in memory_maps #1551 + * CPU usage is always 100% #1550 + * IP plugin still exporting data when disabled #1544 + * Quicklook plugin not working on Systemd #1537 Version 3.1.3 ============= diff --git a/docs/man/glances.1 b/docs/man/glances.1 index 9e52de688368c4cbee13f5aa264d33689513aa79..eb6fd79fcab3ad5171d624a454efc1e2c1265187 100644 --- a/docs/man/glances.1 +++ b/docs/man/glances.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "GLANCES" "1" "Mar 03, 2020" "3.1.4_BETA" "Glances" +.TH "GLANCES" "1" "Mar 10, 2020" "3.1.4" "Glances" .SH NAME glances \- An eye on your system . diff --git a/glances/__init__.py b/glances/__init__.py index 84aadebafb066d598c9482746987104703130c16..3bf63736588166e9f0c207c731f2c55b5ce29aad 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -2,7 +2,7 @@ # # This file is part of Glances. # -# Copyright (C) 2019 Nicolargo +# Copyright (C) 2020 Nicolargo # # Glances is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by @@ -27,7 +27,7 @@ import signal import sys # Global name -__version__ = '3.1.4_BETA' +__version__ = '3.1.4' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3' diff --git a/requirements.txt b/requirements.txt index 85407a730cbfcf73a7ad4315af8cd560a8affe27..92e1d160772b156ab1d37b22ccbd71ca5dd81058 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -psutil==5.6.3 +psutil==5.7.0 future diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index cb7efbc290bb2dccff7924900806a9cf867a63ce..f7c1601fe57ecddda9007980f73f0790afa94961 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -63,7 +63,7 @@ parts: docker: plugin: python source: https://github.com/docker/docker-py.git - source-tag: '3.7.0' + source-tag: '3.7.3' source-depth: 1 launchers: source: snap/local/launchers