summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--debian/changelog6
-rw-r--r--ttystatus/__init__.py2
3 files changed, 15 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a0c5e0c..03a5831 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,14 @@
NEWS file for ttystatus
=======================
+Version 0.29, released 2015-10-10
+---------------------------------
+
+* Do not write a newline to terminal when `finish()` is called, if
+ there is not output to the terminal otherwise. The point of the
+ newline is to make sure the shell prompt starts at the beginning of
+ a new line.
+
Version 0.28, released 2015-10-10
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index fb27b3e..380b82d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-ttystatus (0.29-1) unstable; urgency=medium
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 11 Oct 2015 19:08:24 +0300
+
python-ttystatus (0.28-1) unstable; urgency=medium
* New upstream version.
diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py
index 0b1550b..9aba951 100644
--- a/ttystatus/__init__.py
+++ b/ttystatus/__init__.py
@@ -35,7 +35,7 @@ from .bytespeed import ByteSpeed
from .fmt import parse
-__version__ = '0.28'
+__version__ = '0.29'
__all__ = locals()