--- 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'