diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 5378b9e7d761ce0e2f079f7fbaf14b4c2ad9bee4..d14150fcffaddf5062648fb435ca8c7e5a9bc536 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,5 +1,7 @@ Before filling this issue, please read the manual (https://glances.readthedocs.io/en/latest/) and search if the bug do not already exists in the database (https://github.com/nicolargo/glances/issues). +For any questions concerning installation or use, please open a discussion (https://github.com/nicolargo/glances/discussions), not an issue. + #### Description For a bug: Describe the bug and list the steps you used when the issue occurred. diff --git a/NEWS.rst b/NEWS.rst index c02ef556e464c119f02430b114556bd021fcca6c..df078b291c6ba67dd8910a4093805d11a9ebdc11 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -12,7 +12,7 @@ See roadmap here ==> https://github.com/nicolargo/glances/milestone/49 This release is a major version (but minor number because the API did not change). It focus on *CPU consumption*. I use `Flame profiling https://github.com/nicolargo/glances/wiki/Glances-FlameGraph`_ -and code optimization to reduce CPU consumption from 20% to 50% depending on your system. +and code optimization to *reduce CPU consumption from 20% to 50%* depending on your system. Enhancement and development requests: @@ -47,6 +47,11 @@ Bugs corrected: * Correct filter * Correct Flake8 issue in plugins * Pressing Q to get rid of irq not working #1792 + * Spelling correction in docs #1886 + * Starting an alias with a number causes a crash #1885 + * Network interfaces not applying in web UI #1884 + * Docker containers information missing with Docker 20.10.x #1878 + * Get system sensors temperatures thresholds #1864 Contibutors for this version: diff --git a/docs/man/glances.1 b/docs/man/glances.1 index 3ea877d1634b260b2942ed6cc019b10ccc8efb35..c69c5202f7dde94d4a5dac5120ac22bfd64648bd 100644 --- a/docs/man/glances.1 +++ b/docs/man/glances.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "GLANCES" "1" "Jun 19, 2021" "3.2.0b3" "Glances" +.TH "GLANCES" "1" "Jul 03, 2021" "3.2.0" "Glances" .SH NAME glances \- An eye on your system . diff --git a/glances/__init__.py b/glances/__init__.py index b09ca268b84c7d2da1cc179461f06046c85a4ea1..ee4a17ef1691caf17dbeeb22ddbc8cb484ffed5e 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.2.0b3' +__version__ = '3.2.0' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3'