2004-04-06 20:13:11 +00:00
|
|
|
So far, cairo hasn't reached an initial release. But we can still form
|
|
|
|
|
good habits now by practicing the release process with the current
|
|
|
|
|
snapshots.
|
|
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
A new snapshot is needed whenever significant new features or bug
|
|
|
|
|
fixes are committed. Here are the steps to follow:
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
1) Ensure that there are no local, uncommitted modifications. The best
|
|
|
|
|
thing to do here may be to begin with a fresh checkout from CVS:
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
cvs -d cairographics.org:/cvs/cairo co cairo
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
But it's probably good enough if "cvs -q update -Ad" generates no
|
|
|
|
|
output.
|
2004-05-11 08:19:47 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
2) Verify that the code passes "make distcheck"
|
2004-04-06 20:13:11 +00:00
|
|
|
|
|
|
|
|
Running "make distcheck" should result in no warnings or
|
|
|
|
|
errors and end with a message of the form:
|
|
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
================================================
|
2004-04-06 20:13:11 +00:00
|
|
|
cairo-X.Y.Z.tar.gz is ready for distribution
|
2004-10-27 11:59:56 +00:00
|
|
|
================================================
|
2004-04-06 20:13:11 +00:00
|
|
|
|
|
|
|
|
(But the tar file isn't actually ready yet, as we still have
|
|
|
|
|
some more steps to follow).
|
|
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
3) Fill out an entry in the NEWS file
|
2004-04-06 20:13:11 +00:00
|
|
|
|
|
|
|
|
Sift through the information in ChangeLog since the last
|
|
|
|
|
snapshot. Summarize major changes briefly in a style similar
|
2004-05-11 08:19:47 +00:00
|
|
|
to other entries in NEWS. Take special care to note any
|
|
|
|
|
incompatible changes in the API. These should be easy to find
|
2004-10-27 13:13:39 +00:00
|
|
|
by looking for cairo.h in the ChangeLog. Additionally, the
|
|
|
|
|
output following command should be examined using the previous
|
|
|
|
|
snapshot tag:
|
|
|
|
|
|
|
|
|
|
cvs diff -r SNAPSHOT_X_Y_Z src/cairo.h
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
4) Increment CAIRO_VERSION in configure.in
|
|
|
|
|
|
|
|
|
|
Right now, in its pre-release form, we are incrementing
|
|
|
|
|
CAIRO_VERSION for each snapshot but we are not changing
|
|
|
|
|
the libtool shared library version information. Increment the
|
|
|
|
|
subminor version for bug fixes and backwards-compatible
|
|
|
|
|
additions to the API. Increment the minor number (and reset
|
|
|
|
|
the subminor) for backward-incompatible changes to the API
|
|
|
|
|
(including removals). Leave the major number at 0 until we are
|
|
|
|
|
ready for the first 1.0 release, (at which point these rules
|
|
|
|
|
will change).
|
|
|
|
|
|
2004-04-06 20:13:11 +00:00
|
|
|
5) Commit the changes to NEWS and configure.in
|
|
|
|
|
|
|
|
|
|
Don't forget to fill out the ChangeLog just like with any
|
|
|
|
|
other commit. It's especially important to mention the new
|
|
|
|
|
version number in the ChangeLog.
|
|
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
6) Run "make release-publish" which will perform the following steps
|
|
|
|
|
for you:
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-28 08:36:42 +00:00
|
|
|
* Check that no release exist with the current version
|
2004-10-27 11:59:56 +00:00
|
|
|
* Verify that make distcheck completes successfully
|
2004-10-28 08:36:42 +00:00
|
|
|
* Generate the final tar file
|
2004-10-27 11:59:56 +00:00
|
|
|
* Generate an md5sum file
|
|
|
|
|
* scp both files to cairographics.org:/home/www/cairo/snapshots
|
2004-10-28 08:36:42 +00:00
|
|
|
* Create a LATEST-package-version file (after deleting any old one)
|
2004-10-27 11:59:56 +00:00
|
|
|
* Place local copies of both files in the releases directory
|
2004-10-28 08:36:42 +00:00
|
|
|
* Provide some text for the release announcement (see below).
|
2004-04-06 20:13:11 +00:00
|
|
|
|
2004-10-27 11:59:56 +00:00
|
|
|
7) Tag the entire source tree with a tag of the form SNAPSHOT_X_Y_Z:
|
2004-04-06 20:13:11 +00:00
|
|
|
|
|
|
|
|
cvs tag SNAPSHOT_X_Y_Z
|
|
|
|
|
|
2004-10-28 08:36:42 +00:00
|
|
|
9) Send a message to cairo-announce@cairographics.org to announce the
|
|
|
|
|
new snapshot using the text provided from "make release-publish".
|
2004-04-07 11:03:40 +00:00
|
|
|
|