harfbuzz/RELEASING.md

39 lines
1.6 KiB
Markdown
Raw Normal View History

2017-10-01 18:05:24 +02:00
HarfBuzz release walk-through checklist:
1. Open gitk and review changes since last release.
2017-10-23 19:10:21 +02:00
* `git diff $(git describe | sed 's/-.*//').. src/*.h` prints all public API
changes.
Document them in NEWS. All API and API semantic changes should be clearly
marked as API additions, API changes, or API deletions. Document
2018-06-13 01:32:04 +02:00
deprecations. Ensure all new API / deprecations are in listed correctly in
2018-10-30 23:52:26 +01:00
docs/harfbuzz-sections.txt. If release added new API, add entry for new
API index at the end of docs/harfbuzz-docs.xml.
2017-10-23 19:10:21 +02:00
If there's a backward-incompatible API change (including deletions for API
used anywhere), that's a release blocker. Do NOT release.
2. Based on severity of changes, decide whether it's a minor or micro release
number bump,
3. Search for REPLACEME on the repository and replace it with the chosen version
for the release.
2017-10-23 19:10:21 +02:00
4. Make sure you have correct date and new version at the top of NEWS file.
2017-10-23 19:10:21 +02:00
5. Bump version in line 3 of meson.build and configure.ac.
Do a `meson test -Cbuild` so it both checks the tests and updates
hb-version.h (use `git diff` to see if is really updated).
6. Commit NEWS, meson.build, configure.ac, and src/hb-version.h, as well as any REPLACEME
changes you made. The commit message is simply the release number. Eg. "1.4.7"
2017-10-23 19:10:21 +02:00
7. Do a `meson dist -Cbuild` that runs the tests against the latest commited changes.
If doesn't pass, something fishy is going on, reset the repo and start over.
2017-10-23 19:10:21 +02:00
8. Tag the release and sign it: Eg. "git tag -s 1.4.7 -m 1.4.7". Enter your
GPG password.
2017-10-23 19:10:21 +02:00
9. Push the commit and tag out: "git push --follow-tags".