I'm in the process of compiling the changelog from the git commits,
which is basically how we know what to document things that have
changed in each release.
In doing so, it's evident in a few places we all need to be providing
better commit messages.
So, rather than say "added some new things", a really good commit
message is "added new options xyz_foo and xyz_bar to the foo module,
and here is an example of how they are used".
In short, if you are in the habit of using "git commit -m", actually
spawning the editor (vim/emacs/etc) by leaving off the "-m" and typing
a couple of sentences is a good idea.
This makes it easier when writing documents or browing the history,
and also keeping up with the pace of development.
Thanks!!!
--Michael