summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--README2
-rw-r--r--debian/changelog7
-rw-r--r--ttystatus/__init__.py2
-rw-r--r--ttystatus/messager.py2
-rw-r--r--ttystatus/messager_tests.py2
-rw-r--r--ttystatus/status.py2
-rw-r--r--ttystatus/status_tests.py2
8 files changed, 19 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index f172f94..2173d89 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,12 @@ NEWS file for ttystatus
=======================
+Version 0.8, released 2011-01-30
+--------------------------------
+
+* Write status output to /dev/tty by default.
+
+
Version 0.7, released 2010-10-09
--------------------------------
diff --git a/README b/README
index dbd4f80..55da8c9 100644
--- a/README
+++ b/README
@@ -46,7 +46,7 @@ a link to a bzr branch I can merge from. Thanks!
Legalese
--------
-Copyright 2010 Lars Wirzenius
+Copyright 2010, 2011 Lars Wirzenius
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/debian/changelog b/debian/changelog
index caacea9..ebbe2b3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-ttystatus (0.8) squeeze; urgency=low
+
+ * New upstream release.
+ - write to /dev/tty by default
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 30 Jan 2011 19:23:28 +0000
+
python-ttystatus (0.7) squeeze; urgency=low
* New upstream version. Bugfix.
diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py
index 4539149..1c9a7ef 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.7'
+version = '0.8'
from messager import Messager
from status import TerminalStatus
diff --git a/ttystatus/messager.py b/ttystatus/messager.py
index ce30e73..9908072 100644
--- a/ttystatus/messager.py
+++ b/ttystatus/messager.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010, 2011 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/ttystatus/messager_tests.py b/ttystatus/messager_tests.py
index 1356ae3..507082e 100644
--- a/ttystatus/messager_tests.py
+++ b/ttystatus/messager_tests.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010, 2011 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/ttystatus/status.py b/ttystatus/status.py
index 7725e83..63bf438 100644
--- a/ttystatus/status.py
+++ b/ttystatus/status.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010, 2011 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/ttystatus/status_tests.py b/ttystatus/status_tests.py
index b2b1b04..068212a 100644
--- a/ttystatus/status_tests.py
+++ b/ttystatus/status_tests.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010, 2011 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by