summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-07-03 10:39:30 +0200
committernicolargo <nicolas@nicolargo.com>2021-07-03 10:39:30 +0200
commite7fa0a4cdd647974bcd9f2d4d831a71b87cfbf65 (patch)
tree1759a304b1372ddd6000324474d97ecdd0881506
parent4ed7375a7fe4431dccd30643d1e6c7b8abdf57ca (diff)
version 3.2.0v3.2.0
-rw-r--r--.github/ISSUE_TEMPLATE.md2
-rw-r--r--NEWS.rst7
-rw-r--r--docs/man/glances.12
-rw-r--r--glances/__init__.py2
4 files changed, 10 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 5378b9e7..d14150fc 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 c02ef556..df078b29 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 3ea877d1..c69c5202 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 b09ca268..ee4a17ef 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 <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'