Subject: | Rename CHANGES to Changes |
Hi,
You might like to rename CHANGES to Changes. The latter is the more usual name, and is expected by various tools that process distributions. For example:
http://changes.cpanhq.org/dist/Text-Xslate-Bridge-MultiMarkdown/0.002
The content of your CHANGES file passes the validator here when I paste the text in, but it didn't spot your file. Obviously this tool could be updated to look for CHANGES as well as Changes, but there are no doubt other tools that make the same assumption.
I would have submitted a pull request, but I'm on a mac, with a case insensitive file system, so git sees it as a no-op. I could have done something like:
git mv CHANGES tempfile && git commit -m 'intermediate name' tempfile
git mv tempfile Changes && git commit -m 'renamed changelog to Changes' Changes
But you might wonder what I was up to :-)
Cheers,
Neil