summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-03-12 12:27:21 +0000
committerLars Wirzenius <liw@liw.fi>2011-03-12 12:27:21 +0000
commitf075704f6a77993077deb722bac5b5375e19747a (patch)
treed5a9804ee0b06985d74786cb07183ae06309a6a9
parenta537315902de62824f5a341f2d9244d403e106a1 (diff)
parenta96d8d488221a07da54efec0c38173301d06506b (diff)
downloadcliapp-version_0_7.tar.gz
Merge release of 0.7.version_0_7
-rw-r--r--NEWS14
-rw-r--r--cliapp/__init__.py2
-rw-r--r--debian/changelog6
3 files changed, 21 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 16ba438..fc7601e 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,20 @@ NEWS for cliapp
===============
+Version 0.7, released 2011-03-12
+--------------------------------
+
+* Add configuration file support.
+* API change: all settings are now in a class of their own, and are accessed
+ via `app.settings`, e.g., `app.settings['output']`. See the `cliapp.Settings`
+ class. This change breaks old code, sorry. But since I am still the only
+ user, nobody minds.
+* The callback setting type is now gone.
+* Application name can now be set via the Application class's initializer
+ (optional `progname` argument), or by assigning to
+ `cliapp.Settings.progname`. If not set explicitly, it is set from
+ `sys.argv[0]`.
+
Version 0.6, released 2011-02-19
--------------------------------
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index 66ba604..b7b4cf3 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.6'
+version = '0.7'
from settings import Settings
diff --git a/debian/changelog b/debian/changelog
index 2021f53..50708f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-cliapp (0.7) squeeze; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 12 Mar 2011 12:20:04 +0000
+
python-cliapp (0.6) squeeze; urgency=low
* New upstream version.