5.9 KiB
How to release the specification
The whole specification is now released as a single unit/artifact. This document is the process for releasing the specification and a description of how the (public) machinery works.
Timeline
The spec is released each calendar quarter. The target months are:
- Q1: January or February.
- Q2: May.
- Q3: August.
- Q4: November.
The SCT aims to have dates picked out 2 weeks before the chosen release date. When possible, releases should be scheduled for Thursdays and Fridays to allow a few consecutive business days for identifying blockers.
When a release date is picked, a checklist issue is created to track details of the release. Release blockers should continue to be accepted at the discretion of whoever is doing the release (typically, blockers should be allowed up to 1-2 days before the release date).
Release dates are not promises. The SCT reserves the ability to change, cancel, postpone, etc a release for any reason. Do not rely on a release happening on a given day until the release has actually happened & blog post published.
Once a release is scheduled, the SCT will begin planning what the next release is expected to look like. The plan should be included in the spec release blog post, and be ready for execution on spec release day. Plans are guides and not promises.
A blog post for the SCT members to review should be ready 2-3 days prior to the release at minimum. Preferably a week in advance.
1-2 days before the release itself, the prerequisite steps below are executed to ensure the spec release can go ahead.
Release composition
This section is a work in progress.
Spec releases do not currently have attached themes, though when planning a release a broad theme may be considered. Ideally, each release contains a "hero feature" which is highlighted in the later blog post.
Prerequisites / preparation
First, can we even release the spec? This stage is mostly preparation work needed to ensure a consistent and reliable specification.
- Ensure
main
is committed with all the spec changes you expect to be there. - Review the changelog to look for typos, wording inconsistencies, or lines which can be merged. For example, "Fix typos" and "Fix spelling" can be condensed to "Fix various typos throughout the specification".
- Do a quick skim to ensure changelogs reference the MSCs which brought the changes in. They should be linked to the GitHub MSC PR (not the markdown document).
The release
Assuming the preparation work is complete, all that remains is the actual specification release.
- Create a
release/v1.2
branch wherev1.2
is the version you're about to release. - Update the
params.version
section ofconfig.toml
to use the following template:[params.version] status = "stable" current_version_url = "https://spec.matrix.org/latest" # This will be the spec version you're releasing. If that's v1.2, then `major = "1"` # and `minor = "2"` major = "1" minor = "2" # Today's date. Please use the format implied here for consistency. release_date = "October 01, 2021"
- Commit the changes.
- Generate the changelog.
- Activate your python virtual environment.
- Run
./scripts/generate-changelog.sh v1.2 "October 01, 2021"
(using the correct version number and samerelease_date
format from the hugo config). - Commit the result.
- Tag the branch with the spec release with a format of
v1.2
(if releasing Matrix 1.2). - Push the release branch and the tag.
- GitHub Actions will run its build steps. Wait until these are successful. If fixes need to be made to repair the pipeline or spec build, delete and re-tag the release. You may need to fix up the changelog file by hand in this case.
- Check out and fast-forward
main
to the release branch. - Create a new release on GitHub from the newly created tag.
- The title should be just "v1.2" (for example).
- The description should be a copy/paste of the changelog. The generated changelog
will be at
content/changelog/v1.2.md
- copy/paste verbatim. - Upload the artifacts of the GitHub Actions build for the release to the GitHub release as artifacts themselves. This should be the tarball that will be deployed to spec.matrix.org.
- Commit a reversion to
params.version
ofconfig.toml
onmain
:[params.version] status = "unstable" current_version_url = "https://spec.matrix.org/latest" # major = "1" # minor = "2" # release_date = "October 01, 2021"
- Push pending commits and ensure the unstable spec updates accordingly from the GitHub Actions pipeline.
- Deploy the release on the webserver. See internal wiki.
Patching a release
Patch releases are used to fix the most recent release on record. Typically a patch release will be deployed if there is an issue with the build machinery, a factual error is introduced by the release, or there are notable clarity issues introduced by the release which may affect implementation. It's usually not a good idea to ship a patch release if it can be avoided.
Typos and similar do not generally require a patch release.
Patch releases must not to be used for spec changes (new MSCs, etc) beyond fixing factual errors.
- Add the required changes to the release branch (
release/v1.2
for example). - Fast forward the
v1.2
tag to the release branch head. - Push both the release branch and fast-forwarded tag.
- Wait for the GitHub Actions build to complete on the tag.
- Update the assets on the GitHub release to those generated by the latest Actions build.
- Deploy the release on the webserver. See internal wiki.
- Remove the changelog entries from
main
, if the changes landed onmain
. - Update the github release changelog and changelog on
main
, likely by hand.