summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2016-05-12 10:58:47 +0200
committernicolargo <nicolashennion@gmail.com>2016-05-12 10:58:47 +0200
commit59788e91adce777a2ca0d3187411a88925c82ed6 (patch)
tree95bb29d6430e7a2e776e97c8be0df34683c29bcd
parent9c08a38cfc7e2e245af6d006cc00992a31efac93 (diff)
version 2.6.2v2.6.2
-rw-r--r--NEWS6
-rw-r--r--docs/man/glances.12
-rw-r--r--glances/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index ddefe38d..e647ddac 100644
--- a/NEWS
+++ b/NEWS
@@ -2,12 +2,12 @@
Glances Version 2
==============================================================================
-Version 2.7
-===========
+Version 2.6.2
+=============
Bugs corrected:
- * Crash on launch when viewing temperature of laptop HDD in sleep mode (issue #824)
+ * Crash with Docker 1.11 (issue #848)
Version 2.6.1
=============
diff --git a/docs/man/glances.1 b/docs/man/glances.1
index e1adc7bd..2ca53d1c 100644
--- a/docs/man/glances.1
+++ b/docs/man/glances.1
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
-.TH "GLANCES" "1" "March 26, 2016" "2.6.1" "Glances"
+.TH "GLANCES" "1" "May 12, 2016" "2.6.2" "Glances"
.SH NAME
glances \- An eye on your system
.
diff --git a/glances/__init__.py b/glances/__init__.py
index ebcb1bba..f86ddcc0 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -27,7 +27,7 @@ import sys
# Global name
__appname__ = 'glances'
-__version__ = '2.7_BETA'
+__version__ = '2.6.2'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPL'
diff --git a/setup.py b/setup.py
index 0f8a64e0..ecc20989 100755
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ def get_requires():
setup(
name='Glances',
- version='2.6.1',
+ version='2.6.2',
description="A cross-platform curses-based monitoring tool",
long_description=open('README.rst').read(),
author='Nicolas Hennion',