# HG changeset patch
# User Alexander Solovyov <piranha@piranha.org.ua>
# Date 1249662142 -10800
# Node ID d283be877fc5c38da0cae9f724f3e946cb4df070
# Parent  b5bf4c1f3a68494dbdec962e11c5f9ef5b146ce7
0.9.6 changelog and version bump

diff -r b5bf4c1f3a68 -r d283be877fc5 docs/changelog.rst
--- 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
diff -r b5bf4c1f3a68 -r d283be877fc5 finaloption.py
--- 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'