0.9.6 changelog and version bump 0.9.6
authorAlexander Solovyov <piranha@piranha.org.ua>
Fri, 07 Aug 2009 19:22:22 +0300
changeset 73 d283be877fc5
parent 72 b5bf4c1f3a68
child 74 ecf86f596b72
0.9.6 changelog and version bump
docs/changelog.rst
finaloption.py
--- a/docs/changelog.rst	Fri Aug 07 16:47:36 2009 +0300
+++ b/docs/changelog.rst	Fri Aug 07 19:22:22 2009 +0300
@@ -1,6 +1,15 @@
 Changelog
 ---------
 
+0.9.6
+~~~~~
+ - Checks for option definition: long name should be specified always, short
+   name should be 1 character in length if available.
+ - More specific argument name in guessed usage (this happens if you have not
+   specified usage for command).
+ - Ability to add global decorator for all commands. See ``test.py`` in
+   repository for example: ``ui`` object, to handle verbose/quiet options.
+
 0.9.5
 ~~~~~
 Fixed bug, which prevented programs to work without arguments (displayed help
--- a/finaloption.py	Fri Aug 07 16:47:36 2009 +0300
+++ b/finaloption.py	Fri Aug 07 19:22:22 2009 +0300
@@ -6,7 +6,7 @@
 from itertools import imap
 
 __all__ = ['command', 'dispatch']
-__version__ = '0.9.5'
+__version__ = '0.9.6'
 __author__ = 'Alexander Solovyov'
 __email__ = 'piranha@piranha.org.ua'