summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS11
-rw-r--r--cliapp/__init__.py2
-rw-r--r--debian/changelog6
3 files changed, 18 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index c688027..7aca62e 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,17 @@ NEWS for cliapp
===============
+Version 0.5, released 2011-02-13
+--------------------------------
+
+* Catches exceptions and prints error message, instead of having the Python
+ interpreter do a stack trace.
+* Support more traditional Unix command line filter behavior: read from
+ stdin if no arguments are given, or a dash ('-') is given as the filename.
+* Count files and lines in files.
+* New options: --output, --log, --log-level.
+
+
Version 0.4, released 2011-01-30
--------------------------------
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index 52ccb80..2f55459 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.4'
+version = '0.5'
from app import Application
diff --git a/debian/changelog b/debian/changelog
index 7068059..0c7eec2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-cliapp (0.5) squeeze; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 13 Feb 2011 09:36:27 +0000
+
python-cliapp (0.4) squeeze; urgency=low
* New upstream release.