2016-03-29 15:26:45 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
CHANGELOG=$(cat <<EOF
|
2016-03-10 16:15:54 -08:00
|
|
|
x.x.x Release notes (yyyy-MM-dd)
|
|
|
|
=============================================================
|
2018-10-02 11:40:19 +02:00
|
|
|
### Enhancements
|
2018-10-02 09:55:39 +02:00
|
|
|
* None.
|
2016-03-29 15:26:45 -07:00
|
|
|
|
2018-10-02 09:55:39 +02:00
|
|
|
### Fixed
|
2018-09-18 14:44:13 +02:00
|
|
|
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
|
2018-10-02 09:55:39 +02:00
|
|
|
* None.
|
2016-03-29 15:26:45 -07:00
|
|
|
|
2018-09-18 13:46:14 +02: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
|
2018-10-02 09:55:39 +02:00
|
|
|
* None.
|
2016-03-29 15:26:45 -07:00
|
|
|
|
|
|
|
$(cat CHANGELOG.md)
|
|
|
|
EOF
|
|
|
|
)
|
|
|
|
|
|
|
|
echo "$CHANGELOG" > CHANGELOG.md
|