changelog
This commit is contained in:
parent
5e3c4300c0
commit
4302f6fe85
|
@ -0,0 +1,10 @@
|
|||
x.x.x Release notes (yyyy-MM-dd)
|
||||
=============================================================
|
||||
### API breaking changes
|
||||
* None.
|
||||
### Enhancements
|
||||
* None.
|
||||
### Bugfixes
|
||||
* None.
|
||||
|
||||
|
|
@ -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
|
Loading…
Reference in New Issue