summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-03 17:40:04 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-03 17:40:04 +0100
commit662c04093131086a930ffb998325e80bdec12da5 (patch)
treeb044b05fb9491b72e1b024bcd4e19adca82f9b6a
parentada0b44726498a12d96543b5f876f28fa3feaeef (diff)
downloadcliapp-662c04093131086a930ffb998325e80bdec12da5.tar.gz
Release version 0.15.1.cliapp-0.15.1
-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 9c84b55..b5a3185 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,17 @@
NEWS for cliapp
===============
+Version 0.15.1, released 2011-08-03
+-----------------------------------
+
+* Fix parsing of string list options: their values were being added
+ twice so `-foo=bar` would result in `settings['foo']` having the
+ values `['bar', 'bar']`. Oops. As a result, the `parse_args` method
+ has a new keyword argument, `configs_only`, which it should pass
+ onto `Settings.parse_args`.
+* The argument names for the `process_input_line` method have been
+ improved.
+
Version 0.15, released 2011-08-02
---------------------------------
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index edd6357..91d56de 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'
+__version__ = '0.15.1'
from settings import Settings
diff --git a/debian/changelog b/debian/changelog
index 25c0ae1..f43f627 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-cliapp (0.15.1-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 03 Aug 2011 17:39:49 +0100
+
python-cliapp (0.15-1) unstable; urgency=low
* New upstream release.