changelog

This commit is contained in:
Ari Lazier 2016-03-10 16:15:54 -08:00
parent 5e3c4300c0
commit 4302f6fe85
2 changed files with 24 additions and 0 deletions

10
CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
x.x.x Release notes (yyyy-MM-dd)
=============================================================
### API breaking changes
* None.
### Enhancements
* None.
### Bugfixes
* None.

View File

@ -0,0 +1,14 @@
empty_section=$(cat <<EOS
x.x.x Release notes (yyyy-MM-dd)
=============================================================
### API breaking changes
* None.
### Enhancements
* None.
### Bugfixes
* None.
EOS)
changelog=$(cat CHANGELOG.md)
echo "$empty_section" > CHANGELOG.md
echo >> CHANGELOG.md
echo "$changelog" >> CHANGELOG.md