[ << Release work ] | [Top][Contents] | [ Modifying the Emmentaler font >> ] |
[ < Development phases ] | [ Up : Release work ] | [ Major release checklist > ] |
11.2 Release checklist
A “minor release” means an update of y
in
2.x.y
.
Preparing the release
- Prepare the release branch (
release/unstable
for unstable releases orstable/2.x
for stable releases). It is recommended to use a separate repository for this, or at least a worktree. The checked out repository must have no changes to tracked files.- Pull the latest changes in the remote repository, then switch to
and update the branch:
git fetch origin git rebase origin/master release/unstable
(adapt as necessary for
stable/2.x
) - Remove untracked files from the repository, especially the
configure script:
git clean -dfx --exclude release/
(Keep untracked files in the release/ directory, such as release/binaries/downloads/ and local test builds.)
- Pull the latest changes in the remote repository, then switch to
and update the branch:
- Generate the configure script and run it:
./autogen.sh
- Update the translation template po/lilypond.pot:
make po-replace
- Edit the news files:
- Copy the previous announcement from Documentation/en/web/news-new.itexi to Documentation/en/web/news-old.itexi.
- Create a new announcement in Documentation/en/web/news-new.itexi by adjusting the version number and the date.
- Adjust the headlines in Documentation/en/web/news-headlines.itexi accordingly.
- Adjust version numbers in VERSION. In most cases, this
means setting
VERSION_DEVEL
to the current version. Only changeVERSION_STABLE
if releasing a stable version. - Commit the changes:
git commit -m "po: Update template" -- po/lilypond.pot git commit -m "web: Update news" -- Documentation/en/web/ git commit -m "Bump VERSION_DEVEL" -- VERSION
Creating the source release
- Remove untracked files from the repository (see above):
git clean -dfx --exclude release/
- Generate the configure script and run it:
./autogen.sh
- Create the source tarball:
make dist
The last step creates out/lilypond-2.x.y.tar.gz, which will be the “single source of truth” for the following steps. Put it into a directory for the final upload step.
Building the binaries and documentation
These steps can be run in any order, or in parallel, with the exception of the Windows (mingw) build, that needs a run of the Linux build before.
- Build binaries on “native” platforms (Linux and macOS) with
the scripts in release/binaries/ from the tarball:
./build-dependencies && ./build-lilypond /path/to/lilypond-2.x.y.tar.gz
- Build binaries for Windows (needs a run of the previous step on
Linux):
./build-dependencies --mingw && ./build-lilypond --mingw /path/to/lilypond-2.x.y.tar.gz
- Build the documentation using release/doc/build-doc.sh:
./build-doc.sh /path/to/lilypond-2.x.y.tar.gz
Collect all created binaries (.tar.gz and .zip) and documentation archives (.tar.xz) in the directory next to the source tarball. If possible, give them some short testing to make sure everything works as expected.
Uploading the release
During this step, the artifacts from the previous steps are uploaded
to lilypond.org
and GitLab for the world to see. Make sure
everything is ready before proceeding.
- Create a personal access token at https://gitlab.com/-/profile/personal_access_tokens. This can be limited to auto-expire the next day.
- Upload the source tarball to
lilypond.org
:scp lilypond-2.x.y.tar.gz graham@gcp.lilypond.org:/var/www/lilypond/downloads/sources/v2.x/lilypond-2.x.y.tar.gz
- In the directory where you collected the binaries, run the script to
upload the files to GitLab:
/path/to/lilypond/release/upload.py --token TOKEN 2.x.y
- Extract the web documentation from
lilypond-2.x.y-webdoc.tar.xz
and adjust the group permissions:
chmod -R g+w lilypond-2.x.y-webdoc
- Synchronize the documentation to
lilypond.org
:rsync --delay-updates --delete --delete-after --progress -prtvuz lilypond-2.x.y-webdoc/ graham@gcp.lilypond.org:/var/www/lilypond/doc/v2.x/
Tagging and announcing the release
- In the repository that was used to create the release (check that
git log
has the expected commits; “Bump VERSION_DEVEL” should be the last one), tag the release:git tag -am "LilyPond 2.x.y" v2.x.y
- Push the changes and the tag:
git push origin HEAD:release/unstable v2.x.y
(adapt as necessary for
stable/2.x
) - Create a file description.md with a copy of the release announcement (may be formatted as Markdown for links).
- Create the release on GitLab:
/path/to/lilypond/release/create-release.py --token TOKEN --description description.md 2.x.y
Creating a release on GitLab will automatically send an email to everbody who subscribed to release notifications.
Post unstable release
In this case, the release branch is release/unstable
.
- Update the
master
branch with the latest changes:git fetch origin git rebase origin/master master
- Merge the release branch:
git merge --no-ff release/unstable
- Bump
PATCH_LEVEL
in the VERSION file and commit:git commit -m "Bump VERSION" -- VERSION
- Push the branch to GitLab:
git push origin HEAD:release/unstable
- Create a merge request from
release/unstable
to merge the changes intomaster
. - Update the website as described in Uploading website.
- Update the milestones at GitLab:
- Make sure all merge requests and issues are added to the milestone of the released version. Fill in the due date and close it.
- Create a new milestone for the next release (unless no more bugfix release is planned) and set the start date.
- Check open merge requests and remind people to update the
\version
statement in conversion rules and regression tests.
After the website update appears on lilypond.org
,
send a release notice to lilypond-devel
and lilypond-user
with the same announcement text and possibly further instructions.
[ << Release work ] | [Top][Contents] | [ Modifying the Emmentaler font >> ] |
[ < Development phases ] | [ Up : Release work ] | [ Major release checklist > ] |