From 2e5762c0296a0f62f87712f0821def24d70191a8 Mon Sep 17 00:00:00 2001 From: Dessa Simpson Date: Sun, 20 Dec 2020 13:16:15 -0700 Subject: [PATCH] Add release checklist (RELEASE.md) --- RELEASE.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..f1c186f --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,20 @@ +# Release Checklist + +## Release Type +- Were there any database schema changes? +- Are there any significant UI changes? +- Have any significant new features been added? +- Are there any API changes? + +If the answer to any of the above is yes, then the release MUST be a major or minor release. Otherwise, the release MAY be a patch release (at developer's discretion). + +## Major/Minor Releases +- [ ] Add a commit which adds a database upgrade script at `db/upgrade/[oldversion]-[newversion].sql` + - ALWAYS use a transaction for the entirety of this file + - At minimum, DB version must be bumped +- [ ] Add a commit which bumps the version in `app/version.ts` and `db/00-version.sql` +- [ ] Tag the latest commit with `vMAJOR.MINOR` + +## Patch Releases +- [ ] Add a commit which bumps the patch level in `app/version.ts` +- [ ] Tag the latest commit with `vMAJOR.MINOR.PATCH`