--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/changelog.rst Fri Jul 24 13:34:48 2009 +0300
@@ -0,0 +1,15 @@
+Changelog
+---------
+
+0.9.2
+~~~~~
+Ability to call commands as regular functions, using arguments and keyword
+arguments.
+
+0.9.1
+~~~~~
+Fixed problem with multiple help options in subcommands
+
+0.9
+~~~
+Initial version
--- a/docs/index.rst Fri Jul 24 13:22:13 2009 +0300
+++ b/docs/index.rst Fri Jul 24 13:34:48 2009 +0300
@@ -11,6 +11,7 @@
.. toctree::
:maxdepth: 2
+ changelog
overview
api
--- a/setup.py Fri Jul 24 13:22:13 2009 +0300
+++ b/setup.py Fri Jul 24 13:34:48 2009 +0300
@@ -10,7 +10,7 @@
setup(
name = 'finaloption',
description = 'command line parsing done right',
- long_description = read('README'),
+ long_description = read('README') + '\n\n' + read('docs/changelog.rst'),
version = finaloption.__version__,
author = finaloption.__author__,
author_email = finaloption.__email__,