2
0
mirror of https://github.com/status-im/realm-js.git synced 2025-01-12 15:24:18 +00:00
2016-03-29 15:26:45 -07:00

23 lines
289 B
Bash
Executable File

#!/bin/bash
set -e
set -o pipefail
CHANGELOG=$(cat <<EOF
x.x.x Release notes (yyyy-MM-dd)
=============================================================
### Breaking changes
* None
### Enhancements
* None
### Bugfixes
* None
$(cat CHANGELOG.md)
EOF
)
echo "$CHANGELOG" > CHANGELOG.md