summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-04-07 13:56:23 +0100
committerLars Wirzenius <liw@liw.fi>2011-04-07 13:56:23 +0100
commit3f8ac293ebd1ea07f524a412878eedaeca888947 (patch)
tree030e34ac4bc71c8e6ce0f89480a9248d620c7eed
parentb899be4ee3c49af2f3887e874f36f217438b9948 (diff)
downloadcliapp-version_0_10.tar.gz
Release version 0.10.version_0_10
-rw-r--r--NEWS9
-rw-r--r--cliapp/__init__.py2
-rw-r--r--debian/changelog6
3 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index d0e40ce..fe1fd6b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,15 @@
NEWS for cliapp
===============
+Version 0.10, released 2011-03-21
+--------------------------------
+
+* The `metavar` argument for `optparse.OptionParser` can now be set for
+ settings. This makes for prettier `--help` output.
+* The default value for integer settings is now 0, not `None`.
+* [[README]] now has some more documentation of how to use the framework.
-Version 0.9, released 2011-03-20
+Version 0.9, released 2011-03-21
--------------------------------
* Bugfix: Boolean options now work correctly, even in --help output.
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index 1ebc2f9..cbdb85a 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.9'
+version = '0.10'
from settings import Settings
diff --git a/debian/changelog b/debian/changelog
index d660231..78d9521 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-cliapp (0.10) squeeze; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 07 Apr 2011 13:53:06 +0100
+
python-cliapp (0.9) squeeze; urgency=low
* New upstream version.