fts: reduce two or more trailing slashes to just one, usually
[gnulib.git] / top / README-release
1 Here are most of the steps we (maintainers) follow when making a release.
2
3 * Start from a clean, up-to-date git directory on "master":
4
5     make -k maintainer-clean || { ./configure && make maintainer-clean; }
6     git checkout master
7     git pull origin master
8
9 * Ensure that the latest stable versions of autoconf, automake, etc.
10   are in your PATH.  See the buildreq list in bootstrap.conf for
11   the complete list of tools.
12
13 * Ensure that you have no uncommitted diffs.  This should produce no
14   output:
15
16     git diff
17
18 * Ensure that you've pushed all changes that belong in the release:
19
20     git push origin master
21
22 * Check that the NixOS/Hydra autobuilder is reporting all is well:
23
24     http://hydra.nixos.org/jobset/gnu/@PACKAGE@-master
25
26 * Run the following command to download any new translations:
27
28     ./bootstrap && ./configure
29
30 * Pre-release testing: ensure that the following command succeeds:
31
32     make check syntax-check distcheck
33
34 * To (i) set the date, version number, and release type [stable/alpha/beta]
35   on line 3 of NEWS, (ii) commit that, and (iii) tag the release, run
36
37     make release-commit RELEASE='X.Y stable'
38
39 * Run the following to create release tarballs.  Your choice selects the
40   corresponding upload-to destination in the emitted gnupload command.
41   The different destinations are specified in cfg.mk.  See the definitions
42   of gnu_ftp_host-{alpha,beta,stable}.
43
44     # "TYPE" must be stable, beta or alpha
45     make TYPE
46
47 * Test the tarball.  Copy it to a few odd-ball systems and ensure that
48   it builds and passes all tests.
49
50 * While that's happening, write the release announcement that you will
51   soon post.  Start with the template, $HOME/announce-@PACKAGE@-X.Y
52   that was just created by that "make" command.
53
54 Once all the builds and tests have passed,
55
56 * Run the gnupload command that was suggested by your "make TYPE" run above.
57
58 * Wait a few minutes (maybe up to 30?) and then use the release URLs to
59   download all tarball/signature pairs and use gpg --verify to ensure
60   that they're all valid.
61
62 * Push the NEWS-updating changes and the new tag:
63
64     v=$(cat .prev-version)
65     git push origin master tag v$v
66
67 * Announce it on Savannah first, so you can include the savannah.org
68   announcement link in the email message.
69
70   Go to the news-submission form:
71
72     https://savannah.gnu.org/news/submit.php?group=@PACKAGE@
73
74   If it does not work, then enable "News" for the project via this link:
75
76     https://savannah.gnu.org/project/admin/editgroupfeatures.php?group=@PACKAGE@
77
78   Write something like the following:
79
80     Subject: @PACKAGE@-X.Y released [stable]
81     +verbatim+
82     ...paste the announcement here...
83     -verbatim-
84
85   Then go here to approve it:
86
87     https://savannah.gnu.org/news/approve.php?group=@PACKAGE@
88
89 * Send the announcement email message.
90
91 * After each non-alpha release, run
92
93     make web-manual-update
94
95   to update the on-line manual accessible at
96
97     http://www.gnu.org/software/@PACKAGE@/manual/