mention scm_read_0str and scm_eval_0str, corrections to file names.
[bpt/guile.git] / RELEASE
CommitLineData
2732830a 1This is a checklist for making Guile releases.
251ca7ab
JB
2It's specific to the FSF's development environment; please don't put
3it in the distribution.
2732830a 4
f8c9d497
JB
5Maybe we should name Guile releases after entertaining poisons:
6absinthe, etc. However, the first release containing the module
7system should be called Godot: "This is the one you've been waiting
8for."
f7677ff2 9
cc914709
JB
10Platforms for test builds:
11SunOS (gcc and pcc) --- galapas.ai.mit.edu
12Solaris (gcc and SUN cc) --- saturn.ai.mit.edu
13NetBSD (gcc) --- repo-man.ai.mit.edu (use /home/repo/jimb)
14HP/UX (gcc, HP cc) --- nutrimat.gnu.ai.mit.edu
15
422b92d2 16These gentlemen have kindly offered to do pre-release testing:
99ac53b9
MD
17
18Tom Tromey <tromey@cygnus.com>:
19
20 alphaev5-unknown-linux-gnu
21 hppa1.1-hp-hpux10.20
22 hppa1.1-hp-hpux11.00
23 mips-sgi-irix5.3
24 powerpc-ibm-aix4.2.0.0
25 powerpc-unknown-linux-gnu
26 sparc-sun-solaris2.6
27 i686-pc-linux-gnu
28 mips-sgi-irix6.3
29 sparc-sun-sunos4.1.4
30
31Ian Grant <I.A.N.Grant@damtp.cam.ac.uk>:
32
c7552137 33 alpha-dec-osf4.0e
99ac53b9
MD
34
35Julian Satchell <satchell@merry.dra.hmg.gb>:
36
37 dec-mips-ultrix
cc914709 38
d4c83f63
JB
39Perry Metzger <perry@piermont.com>
40
41 NetBSD
42
3f686b10
JB
43
44Release Checklists ===================================================
45
46There are basically two phases to doing a release:
47
48* "SPIFFING": Updating NEWS, README, INSTALL. Running tests. Getting
49 people to try builds on various machines. Getting everything
50 straightened up.
51
52* "PUNTING": Updating the version numbers. Tagging the sources. Asking
53 the FSF to put the disty on ftp.gnu.org. Posting announcements.
54
55The "Spiffing" phase you might go through several times as you
56discover problems. The "Punting" phase you do only once.
57
58
59Spiffing checklist:
60
61* Do a `cvs update -A', to get rid of any sticky tags in your working
62 directory.
63* Check for files that have changed a lot, but do not have up-to-date
fba33ff1 64 copyright notices. This can be as simple as doing:
341f78c9 65 grep 'Copyright' * | grep -v 1999
fba33ff1 66 and looking for files you know you've worked on a lot.
a5eebee7 67* Make sure NEWS, INSTALL, AUTHORS and THANKS and the docs are up to date:
3f686b10
JB
68 + Scan the ChangeLogs for user-visible changes, marked with an asterisk
69 at the left margin.
70 + Update NEWS and the Texinfo documentation as appropriate.
71 + Remove the user-visible markers from the log entries once they're
72 documented.
73 + Check for any [[incomplete]] sections of NEWS.
74 + Fact-check INSTALL.
e04ff9b2
TTN
75 + Make sure AUTHORS and THANKS are up-to-date (see also TODO).
76 + Remove finished items from TODO (those marked w/ "+").
e4445210 77* Make sure the downloading addresses and filenames in README are
340a8770 78 current. (But don't bump the version number yet. We do that below.)
3f686b10 79* Check that the versions of aclocal, automake, autoconf, and autoheader
f43aac9a 80 in your PATH match those given in HACKING. Note that the `make
3f686b10
JB
81 dist' process always invokes these tools, even when all the
82 generated files are up to date.
e673b804
MV
83 Make specifically sure that the files in libltdl are generated using
84 the same tools as the rest.
3f686b10
JB
85* Rebuild all generated files in the source tree:
86 + Install the .m4 files where aclocal will find them.
87 + Run aclocal.
3f686b10
JB
88 + Run autoconf.
89 + Run autoheader.
14a7a25d 90 + Run automake.
3f686b10 91* Verify that Guile builds and runs in your working directory.
f43aac9a 92* Run the test suite, in guile-core/test-suite.
3f686b10
JB
93* Commit all changes to the CVS repository.
94* Build a test distribution.
95 + BEFORE doing 'make dist', configure the source tree for build
9a8a1e8a
MD
96 in the same tree with configuration options
97 --enable-maintainer-mode --enable-debug-malloc --with-threads.
24e720c8
JB
98 + Make sure that readline was enabled correctly.
99 + Build the tree.
100 (If the above steps are not done, the dependencies won't be properly
101 included in the generated Makefile.in files.)
3f686b10 102 + Then do 'make dist'.
b5074b23
MD
103 + Check that the dependencies in guile-readline/Makefile look OK.
104 (We currently use a kludge which edits the dependencies generated
105 by automake so that Guile can be built in a directory separate
106 from the source tree also with non-GNU make programs.)
3f686b10
JB
107* Give the test disty to various people to try. Here's what you should do:
108 + Unset GUILE_LOAD_PATH.
109 + Remove automake and autoconf from your path, or turn off their
110 execute bits, or something. (Users must be able to build the
111 disty without installing those tools.)
112 + Configure, make, and install.
113 + Make sure LD_LIBRARY_PATH doesn't include anything unnecessary.
114 + Run the test suite on the installed version.
115 + You might try the example code in the doc directory.
116
117Once you've got a disty that seems pretty solid:
118
119* Choose new interface numbers for shared libraries.
120* Update the version numbers in GUILE-VERSION and README. (There are
121 many places in README that need updating!) The Guile version
122 number should have one of the following forms:
123 N.M - a major release
124 N.M.L, where L is even - a minor release
125 N.M.L, where L is odd - sources from CVS or nightly snapshot
126* Reformat the names in THANKS.
127* Do a `cvs update -A' of the whole tree, to look for any stray
128 uncommitted or accidental changes.
129* Commit your changes.
130* Make one last test distribution.
131
132Punting checklist:
133
134* Add "Guile N.M released." entry to the top-level ChangeLog, and commit it.
c7552137 135* Tag the entire source tree with a tag of the form "release_N_M"
3f686b10 136 or "release_N_M_L".
bab4e1cc 137* Do a 'make dist'.
3f686b10
JB
138* Put the distribution up for FTP somewhere, and send mail to
139 ftp-upload@gnu.org, asking them to put it on prep.
140* Send an announcement message to gnu-announce@gnu.org. Put a brief
141 summary of the changes in this release first, then "Obtaining
142 Guile", "Thanks", "About This Distribution," and "Nightly
143 Snapshots." If I remember correctly, the moderator will delay it
144 until the distribution appears on ftp.gnu.org. The announcement
145 text should be mostly taken from Guile's README file.
146* Notify freshmeat.net, although they're probably watching anyway.
147 (They got the 1.3 release just fine.) I have no idea if
148 www.bowerbird.com.au will be something anyone refers to, but Guile
149 does have an entry there.
150* Tweak the version numbers in GUILE-VERSION, and README to indicate
151 that the sources are a snapshot again. Snapshots should have
152 version numbers of the form "N.M.L", where L is odd.
153* Start a new section of the NEWS file.
154* Start a new THANKS file.