summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--debian/changelog7
-rw-r--r--ttystatus/__init__.py2
3 files changed, 18 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 8f37a12..a21ba18 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,16 @@ NEWS file for ttystatus
=======================
+Version 0.5, released 2010-07-07
+--------------------------------
+
+* Speed optimization: widgets are now only updated when the values they're
+ interested are updated, and widgets are now only formatted when the result
+ is actually going to be printed. For long-running processes with
+ frequent updates, this saves a lot of unnecessary computation.
+* Debian packaging fix: Add Python-Version headers.
+
+
Version 0.4, released 2010-07-05
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index cf6026e..299ed53 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-ttystatus (0.5) squeeze; urgency=low
+
+ * New release.
+ * debian/control: Add Python-Version headers.
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 07 Jul 2010 09:41:27 +1200
+
python-ttystatus (0.4) squeeze; urgency=low
* New release.
diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py
index fe2ed15..d3b473b 100644
--- a/ttystatus/__init__.py
+++ b/ttystatus/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = '0.4'
+version = '0.5'
from messager import Messager
from status import TerminalStatus