realm-js/scripts/changelog-header.sh

29 lines
620 B
Bash
Raw Normal View History

2016-03-29 22:26:45 +00:00
#!/bin/bash
set -e
set -o pipefail
CHANGELOG=$(cat <<EOF
2016-03-11 00:15:54 +00:00
x.x.x Release notes (yyyy-MM-dd)
=============================================================
2018-09-18 11:46:14 +00:00
## Enhancements
2016-03-29 22:26:45 +00:00
* None
2018-09-18 11:46:14 +00:00
### Fixes
2018-09-18 12:44:13 +00:00
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
2016-03-29 22:26:45 +00:00
* None
2018-09-18 11:46:14 +00:00
### Compatibility
* File format: ver. 7 (upgrades automatically from previous formats)
* Realm Object Server: 3.11.0 or later.
* APIs are backwards compatible with all previous release of realm in the 2.x.y series.
### Internal
2016-03-29 22:26:45 +00:00
* None
$(cat CHANGELOG.md)
EOF
)
echo "$CHANGELOG" > CHANGELOG.md