weston/releasing.txt

114 lines
4.5 KiB
Plaintext
Raw Normal View History

To make a release of Weston and/or Wayland, follow these steps.
0. Verify the test suites and codebase checks pass. All of the
tests pass should either pass or skip.
$ make check
1. For Weston, verify that the wayland and wayland-protocols version
dependencies are correct, and that wayland-protocols has had a
release with any needed protocol updates.
2. Update the first stanza of configure.ac to the intended versions
for weston and libweston.
releasing: how to handle libweston libweston has separate version numbering from weston because of development needs. During development, weston version is major.minor.90 which will never be a release version number. While developing, we may break the libweston backward-compatibility, in which case libweston_major_version will be bumped. This means that libweston_major_version > weston_major_version but only during the development period and for the pre-releases. When the official x.y.0 release is made, weston and libweston versions will get synchronized as explained in releasing.txt. The reason we do this is that e.g. during the weston 3.0.90 development period we must be able to install libweston-4.so because the development has broken the compatibility and so we cannot install it as libweston-3.so anymore. However, we cannot bump weston to 4.0.90, because then the official release would go backwards in numbers to 4.0.0. This also means that weston pre-releases major.minor.9x may install libweston-(major+1).so. There is also libweston-(major+1).pc file but it will give the weston version as the version number. IOW, pkg-config check for 'libweston-M < M.0.0' matches only the pre-releases of the libweston major version M. Hence, 'libweston-M >= M.0.0' cannot be satisfied by pre-releases. The weston and libweston version numbers MUST be identical in all releases except the pre-releases major.minor.9x. When the 1.11.91 pre-release is made, the rules imply that libweston version will be bumped from 0.0.0 to 1.11.91. The bumping will continue up to the 1.12.0 release. After the bump to 1.12.90, the libweston version may be bumped to 2.0.0. Then the rules imply that: - 1.12.9x pre-releases install libweston 2.0.0 - the next .0 release is 2.0.0 containing libweston 2.0.0 If the 1.12 stable branch will see additional releases, those will be numbered 1.12.1, 1.12.2, etc. with the libweston version being the same as the release version number. If we have release 2.0.91 without libweston major bump, then libweston version will match the release version, leading up to 2.1.0. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk> Reviewed-by: Jonas Ådahl <jadahl@gmail.com> Reviewed-by: Quentin Glidic <sardemff7+git@sardemff7.net> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2016-08-10 09:06:43 +00:00
For Weston's x.y.0 releases, if libweston_major_version is greater than
weston_major_version, bump the Weston version numbers (major, minor,
micro) to match the libweston version numbers (major, minor, patch).
Additionally for all Weston releases, if libweston version
major.minor.patch is less than Weston version major.minor.micro, bump
libweston version numbers to match the Weston version numbers.
Weston releases are made with the Weston version number, not with the
libweston version number.
Then commit your changes:
$ export RELEASE_NUMBER="x.y.z"
2015-08-16 21:00:05 +00:00
$ export RELEASE_NAME="[alpha|beta|RC1|RC2|official|point]"
$ git status
$ git commit configure.ac -m "configure.ac: bump to version $RELEASE_NUMBER for the $RELEASE_NAME release"
$ git push
3. For Weston releases, install Xwayland, either from your distro or
manually (see http://wayland.freedesktop.org/building.html). If
you install it to a location other than /usr/bin/Xwayland, specify
this in the following env var:
XWAYLAND=$(which Xwayland) # Or specify your own path
export DISTCHECK_CONFIGURE_FLAGS="--with-xserver-path=$XWAYLAND"
2015-05-16 01:51:19 +00:00
If you're using a locally installed libinput or other dependency
libraries, you'll likely need to set a few other environment
variables:
2015-05-16 01:51:19 +00:00
export WLD="<path-to-your-local-installation>"
export LD_LIBRARY_PATH=$WLD/lib
export PKG_CONFIG_PATH=$WLD/lib/pkgconfig:$WLD/share/pkgconfig/
4. Run the release.sh script to generate the tarballs, sign and
upload them, and generate a release announcement template.
This script can be obtained from X.org's modular package:
http://cgit.freedesktop.org/xorg/util/modular/tree/release.sh
The script supports a --dry-run option to test it without actually
doing a release. If the script fails on the distcheck step due to
a testsuite error that can't be fixed for some reason, you can
skip testsuite by specifying the --dist argument. Pass --help to
see other supported options.
$ release.sh .
For wayland, also publish the publican documentation to
wayland.freedesktop.org:
$ ./publish-doc
5. Compose the release announcements. The script will generate
*.x.y.z.announce files with a list of changes and tags, one for
wayland, one for weston. Prepend these with a human-readable
listing of the most notable changes. For x.y.0 releases, indicate
the schedule for the x.y+1.0 release.
6. pgp sign the the release announcements and send them to
wayland-devel@lists.freedesktop.org
7. Update releases.html in wayland-web with links to tarballs and
the release email URL.
The wl_register_release script in wayland-web will generate an HTML
snippet that can be pasted into releases.html (or e.g. in emacs
2016-05-31 22:52:33 +00:00
insert it via "C-u M-! scripts/wl_register_release x.y.z") and
customized.
Once satisfied:
$ git commit ./releases.html -m "releases: Add ${RELEASE_NUMBER} release"
$ git push
$ ./deploy
8. Update topic in #wayland to point to the release announcement URL
2015-05-27 20:06:59 +00:00
For x.y.0 releases, also create the release series x.y branch. The x.y
branch is for bug fixes and conservative changes to the x.y.0 release,
and is where we create x.y.z releases from. Creating the x.y branch
2015-05-27 20:06:59 +00:00
opens up master for new development and lets new development move on.
We've done this both after the x.y.0 release (to focus development on
bug fixing for the x.y.1 release for a little longer) or before the
x.y.0 release (like we did with the 1.5.0 release, to unblock master
development early).
$ git branch x.y [sha]
$ git push origin x.y
The master branch configure.ac version should always be (at least)
x.y.90, with x.y being the most recent stable branch. Stable branch
configure version is just whatever was most recently released from
that branch.
For stable branches, we commit fixes to master first, then cherry-pick
them back to the stable branch.