summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-19 17:30:47 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-19 17:30:47 +0100
commitaef8c15fa65e85b5ec13d8d9fc310585e6c0be5e (patch)
treecd2d1ecabb4c1c30172ea24d3ee567d44a642a8e
parent84f319fc7dd08dc479f51b0d03f556809462c2c7 (diff)
parent1c96d2310e9ffda34c7e02dff411088a7dd2d486 (diff)
downloadcliapp-0.16.tar.gz
Release version 0.16.cliapp-0.16
-rw-r--r--NEWS4
-rw-r--r--cliapp/__init__.py2
-rw-r--r--cliapp/app.py2
-rw-r--r--debian/changelog4
4 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 5d7be69..0c9bdcc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,8 @@
NEWS for cliapp
===============
-Version 0.16.1, released UNRELEASED
------------------------------------
+Version 0.16, released 2011-08-19
+---------------------------------
* An EPIPE error when writing to stdout is suppressed. This avoids a Python
stack trace or other error when user pipes output to, say, less, and
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index 91d56de..f1047ea 100644
--- a/cliapp/__init__.py
+++ b/cliapp/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__version__ = '0.15.1'
+__version__ = '0.16'
from settings import Settings
diff --git a/cliapp/app.py b/cliapp/app.py
index 94dc34f..043a8e8 100644
--- a/cliapp/app.py
+++ b/cliapp/app.py
@@ -141,7 +141,7 @@ class Application(object):
sys.exit(e.code)
except KeyboardInterrupt, e:
sys.exit(255)
- except IOError, e:
+ except IOError, e: # pragma: no cover
if e.errno == errno.EPIPE and e.filename is None:
# We're writing to stdout, and it broke. This almost always
# happens when we're being piped to less, and the user quits
diff --git a/debian/changelog b/debian/changelog
index e5482d7..c4b90ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-python-cliapp (99.99.99-99.99) UNRELEASED; urgency=low
+python-cliapp (0.16-1) unstable; urgency=low
* Replace embedded copy of jquery.js with symlink to libjs-jquery's copy.
- -- Lars Wirzenius <liw@liw.fi> Fri, 05 Aug 2011 17:05:36 +0100
+ -- Lars Wirzenius <liw@liw.fi> Fri, 19 Aug 2011 17:26:25 +0100
python-cliapp (0.15.1-1) unstable; urgency=low