summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--cliapp/__init__.py2
-rw-r--r--debian/changelog6
3 files changed, 17 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index fc7601e..5e0c39f 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,16 @@ NEWS for cliapp
===============
+Version 0.8, released 2011-03-20
+--------------------------------
+
+* Bugfix: duplicate option names in --help output fixed.
+* Exception handling has been improved: stack traces are now logged, and
+ there's a `cliapp.AppException` base class for application exceptions,
+ which will cause an error message to be written out, but no stack trace.
+ All other exceptions cause a stack trace, so as to make it easier to debug
+ things.
+
Version 0.7, released 2011-03-12
--------------------------------
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index b05effc..fb82302 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.7'
+version = '0.8'
from settings import Settings
diff --git a/debian/changelog b/debian/changelog
index 50708f2..7339dff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-cliapp (0.8) squeeze; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 20 Mar 2011 09:46:01 +0000
+
python-cliapp (0.7) squeeze; urgency=low
* New upstream version.