realm-js/scripts/changelog-header.sh

29 lines
623 B
Bash
Executable File

#!/bin/bash
set -e
set -o pipefail
CHANGELOG=$(cat <<EOF
x.x.x Release notes (yyyy-MM-dd)
=============================================================
### Enhancements
* None.
### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
* None.
### Compatibility
* File format: ver. 9 (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
* None.
$(cat CHANGELOG.md)
EOF
)
echo "$CHANGELOG" > CHANGELOG.md