/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/releasing.txt

  • Committer: Martin Pool
  • Date: 2010-08-13 08:09:53 UTC
  • mto: (5050.17.6 2.2)
  • mto: This revision was merged to the branch mainline in revision 5379.
  • Revision ID: mbp@sourcefrog.net-20100813080953-c00cm9l3qgu2flj9
Remove spuriously-resurrected test

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Releasing Bazaar
 
2
################
 
3
 
 
4
This document describes the processes for making and announcing a Bazaar
 
5
release, and managing the release process.  This is just one phase of the
 
6
`overall development cycle <http://doc.bazaar-vcs.org/developers/cycle.html>`_,
 
7
but it's the most complex part.
 
8
This document gives a checklist you can follow from start to end in one
 
9
go.
 
10
 
 
11
If you're helping the Release Manager (RM) for one reason or another, you
 
12
may notice that he didn't follow that document scrupulously. He may have
 
13
good reasons to do that but he may also have missed some parts.
 
14
 
 
15
Follow the document yourself and don't hesitate to create the missing
 
16
milestones for example (we tend to forget these ones a lot).
 
17
 
 
18
.. contents::
 
19
 
 
20
 
 
21
Preconditions
 
22
=============
 
23
 
 
24
#. Download the pqm plugin and install it into your ``~/.bazaar/plugins``::
 
25
 
 
26
     bzr branch lp:bzr-pqm ~/.bazaar/plugins/pqm
 
27
 
 
28
 
 
29
At the start of a release cycle
 
30
===============================
 
31
 
 
32
To start a new release cycle:
 
33
 
 
34
#. If this is the first release for a given *x.y* then create a new
 
35
   series at <https://launchpad.net/bzr/+addseries>. There is one series
 
36
   for every *x.y* release.
 
37
 
 
38
#. If you made a new series, create a new pqm-controlled branch for this
 
39
   release series, by asking a Canonical sysadmin.  This branch means that
 
40
   from the first release beta or candidate onwards, general development
 
41
   continues on the trunk, and only specifically-targeted fixes go into
 
42
   the release branch.
 
43
 
 
44
#. If you made a new series, add milestones at
 
45
   <https://edge.launchpad.net/bzr/x.y/+addmilestone> to that series for
 
46
   the beta release, release candidate and the final release, and their
 
47
   expected dates.
 
48
 
 
49
#. Create a new milestone <https://edge.launchpad.net/bzr/x.y/+addmilestone>
 
50
   and add information about this release.  We will not use it yet, but it
 
51
   will be available for targeting or nominating bugs.
 
52
 
 
53
#. Send mail to the list with the key dates, who will be the release
 
54
   manager, and the main themes or targeted bugs.  Ask people to nominate
 
55
   objectives, or point out any high-risk things that are best done early,
 
56
   or that interact with other changes. This is called the metronome mail
 
57
   and is described in `Development cycles <cycle.html>`_.
 
58
 
 
59
#. Make a local branch for preparing this release.  (Only for the first
 
60
   release in a series, otherwise you should already have a branch.) ::
 
61
 
 
62
     bzr branch trunk prepare-1.14
 
63
 
 
64
#. Configure pqm-submit for this branch, with a section like this (where
 
65
   x.y is the version to release). **Or use hydrazine for easy use**
 
66
   ``~/.bazaar/locations.conf``::
 
67
 
 
68
        [/home/mbp/bzr/prepare-x.y]
 
69
        pqm_email = Canonical PQM <pqm@bazaar-vcs.org>
 
70
        submit_branch = http://bazaar.launchpad.net/~bzr-pqm/bzr/x.y
 
71
        parent_branch = http://bazaar.launchpad.net/~bzr-pqm/bzr/x.y
 
72
        public_branch = http://bazaar.example.com/prepare-x.y
 
73
        submit_to = bazaar@lists.canonical.com
 
74
        smtp_server = mail.example.com:25
 
75
 
 
76
    Please see <http://doc.bazaar-vcs.org/developers/HACKING.html#an-overview-of-pqm>
 
77
    for more details on PQM
 
78
 
 
79
#. Update the version number in the ``bzr`` script, and the
 
80
   ``bzrlib/__init__.py`` file::
 
81
   
 
82
       version_info = (x, y, z, 'dev', 0)
 
83
   
 
84
#. Add a new section at the top of ``NEWS`` about the new release,
 
85
   including its version number and the headings from
 
86
   ``NEWS-template.txt``.
 
87
 
 
88
#. Update the "What's New" documents in ``doc/en/whats-new``.
 
89
 
 
90
#. Commit this and send it to PQM.
 
91
 
 
92
 
 
93
Doing a particular release
 
94
==========================
 
95
 
 
96
Update the source code
 
97
----------------------
 
98
 
 
99
#. Check that there is a milestone for the release you're doing. If there
 
100
   is no milestone it indicates a process problem - make the milestone but
 
101
   also mail the list to raise this issue in our process. Milestones are
 
102
   found at <https://launchpad.net/bzr/+milestone/x.y.z>.
 
103
 
 
104
#. In the release branch, update  ``version_info`` in ``./bzrlib/__init__.py``.
 
105
   Make sure the corresponding milestone exists.
 
106
   Double check that ./bzr ``_script_version`` matches ``version_info``. Check
 
107
   the output of ``bzr --version``.
 
108
 
 
109
   For beta releases use::
 
110
 
 
111
       version_info = (2, 1, 0, 'beta', SERIAL)
 
112
 
 
113
   For instance 2.1b1::
 
114
 
 
115
       version_info = (2, 1, 0, 'beta', 1)
 
116
 
 
117
   For release candidates use::
 
118
 
 
119
       version_info = (2, 0, 1, 'candidate', SERIAL)
 
120
 
 
121
   For stable releases use::
 
122
 
 
123
       version_info = (2, 1, 2, 'final', 0)
 
124
 
 
125
#. Update the ``./NEWS`` section for this release.
 
126
 
 
127
   Fill out the date and a description of the release under the existing
 
128
   header. If there isn't one, follow the above for using the NEWS
 
129
   template.
 
130
 
 
131
   See *2.1.1* or similar for an example of what this looks like.
 
132
 
 
133
#. Add a summary of the release into the "What's New" document.
 
134
 
 
135
#. To check that all bugs mentioned in ``./NEWS`` are actually marked as
 
136
   closed in Launchpad, you can run ``tools/check-newsbugs.py``::
 
137
 
 
138
     ./tools/check-newsbugs.py NEWS
 
139
 
 
140
   (But note there will be many false positives, and this script may be
 
141
   flaky <https://bugs.edge.launchpad.net/bzr/+bug/354985>.  Don't let
 
142
   this slow you down too much.)
 
143
 
 
144
#. Commit these changes to the release branch, using a command like::
 
145
 
 
146
     bzr commit -m "Release 1.14."
 
147
 
 
148
   The diff before you commit will be something like::
 
149
 
 
150
     === modified file 'NEWS'
 
151
     --- NEWS        2008-09-17 23:09:18 +0000
 
152
     +++ NEWS        2008-09-23 16:14:54 +0000
 
153
     @@ -4,6 +4,23 @@
 
154
 
 
155
      .. contents::
 
156
 
 
157
     +bzr 1.7 2008-09-23
 
158
     +------------------
 
159
     +
 
160
     +This release includes many bug fixes and a few performance and feature
 
161
     +improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
162
     +like how ``bzr add`` scans for unknown files and adds them. A bit more
 
163
     +polish has been applied to the stacking code. The b-tree indexing code has
 
164
     +been brought in, with an eye on using it in a future repository format.
 
165
     +There are only minor installer changes since bzr-1.7rc2.
 
166
     +
 
167
      bzr 1.7rc2 2008-09-17
 
168
      ---------------------
 
169
 
 
170
 
 
171
     === modified file 'bzrlib/__init__.py'
 
172
     --- bzrlib/__init__.py  2008-09-16 21:39:28 +0000
 
173
     +++ bzrlib/__init__.py  2008-09-23 16:14:54 +0000
 
174
     @@ -41,7 +41,7 @@
 
175
      # Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
 
176
      # releaselevel of 'dev' for unreleased under-development code.
 
177
 
 
178
     -version_info = (1, 7, 0, 'candidate', 2)
 
179
     +version_info = (1, 7, 0, 'final', 0)
 
180
 
 
181
 
 
182
      # API compatibility version: bzrlib is currently API compatible with 1.7.
 
183
 
 
184
#. Tag the new release::
 
185
 
 
186
     bzr tag bzr-1.14
 
187
 
 
188
#. Push those changes to a bzr repository that is public and accessible on
 
189
   the Internet. PQM will pull from this repository when it attempts to merge
 
190
   your changes. Then submit those changes to PQM for merge into the
 
191
   appropriate release branch::
 
192
 
 
193
     bzr push
 
194
     bzr pqm-submit -m "(mbp) prepare 1.14"
 
195
 
 
196
   Or with hydrazine::
 
197
 
 
198
     bzr lp-propose -m "Release 1.14" --approve lp:bzr/1.14
 
199
     feed-pqm bzr
 
200
 
 
201
#. When PQM succeeds, pull down the master release branch.
 
202
 
 
203
 
 
204
Making the source tarball
 
205
-------------------------
 
206
 
 
207
#. Change into the source directory and run ::
 
208
 
 
209
     make dist
 
210
 
 
211
#. Now we'll try expanding this tarball and running the test suite
 
212
   to check for packaging problems::
 
213
 
 
214
     make check-dist-tarball
 
215
 
 
216
   You may encounter failures while running the test suite caused
 
217
   by your locally installed plugins. Use your own judgment to
 
218
   decide if you can release with these failures. When in doubt,
 
219
   disable the faulty plugins one by one until you get no more
 
220
   failures.
 
221
 
 
222
   Remember that PQM has just tested everything too, this step is
 
223
   particularly testing that the pyrex extensions, which are updated
 
224
   by your local pyrex version when you run make dist, are in good
 
225
   shape.
 
226
 
 
227
 
 
228
Publishing the source tarball
 
229
-----------------------------
 
230
 
 
231
#. Go to the relevant milestone page in Launchpad.
 
232
 
 
233
#. Create a release of the milestone, and upload the source tarball and
 
234
   the GPG signature.  Or, if you prefer, use the
 
235
   ``tools/packaging/lp-upload-release`` script to do this. Note that
 
236
   this changes what the download widget on the Launchpad bzr home
 
237
   page shows, so don't stop the release process yet, or platform binary
 
238
   installers won't be made and the download list will stay very small!
 
239
   <https://bugs.edge.launchpad.net/launchpad/+bug/586445>
 
240
 
 
241
 
 
242
Announcing the source freeze
 
243
----------------------------
 
244
 
 
245
#. Post to the ``bazaar`` list, saying that the source has been frozen.
 
246
   This is the cue for platform maintainers and plugin authors to update
 
247
   their code.  This is done before the general public announcement of the
 
248
   release.
 
249
 
 
250
 
 
251
Kick off the next cycle
 
252
-----------------------
 
253
 
 
254
#. To let developers work on the next release, do
 
255
   `At the start of a release cycle` now.
 
256
 
 
257
#. Pause for a few days.
 
258
 
 
259
 
 
260
Publishing the release
 
261
----------------------
 
262
 
 
263
There is normally a delay of a few days after the source freeze to allow
 
264
for binaries to be built on various platforms.  Once they have been built,
 
265
we have a releasable product.  The next step is to make it generally
 
266
available to the world.
 
267
 
 
268
#. Go to the release web page at <https://launchpad.net/bzr/x.y/x.y.z>
 
269
 
 
270
#. Link from http://bazaar-vcs.org/SourceDownloads to the tarball and
 
271
   signature.
 
272
 
 
273
#. Announce on the `Bazaar website <http://bazaar-vcs.org/>`_.
 
274
   This page is edited via the lp:bzr-website branch. (Changes
 
275
   pushed to this branch are refreshed by a cron job on escudero.)
 
276
 
 
277
#. Announce on the `Bazaar wiki <http://bazaar-vcs.org/Welcome>`_.
 
278
 
 
279
#. Check that the documentation for this release is available in
 
280
   <http://doc.bazaar-vcs.org>.  It should be automatically build when the
 
281
   branch is created, by a cron script ``update-bzr-docs`` on
 
282
   ``escudero``. As of today (2009-08-27) ``igc`` manually updates the
 
283
   pretty version of it.
 
284
 
 
285
 
 
286
Announcing the release
 
287
----------------------
 
288
 
 
289
Now that the release is publicly available, tell people about it.
 
290
 
 
291
#. Make an announcement mail.
 
292
 
 
293
   For release candidates or beta releases, this is sent to the ``bazaar``
 
294
   list only to inform plugin authors and package or installer managers.
 
295
 
 
296
   Once the installers are available, the mail can be sent to the
 
297
   ``bazaar-announce`` list too.
 
298
 
 
299
   For final releases, it should also be cc'd to ``info-gnu@gnu.org``,
 
300
   ``python-announce-list@python.org``, ``bug-directory@gnu.org``.
 
301
 
 
302
   In all cases, it is good to set ``Reply-To: bazaar@lists.canonical.com``,
 
303
   so that people who reply to the announcement don't spam other lists.
 
304
 
 
305
   The announce mail will look something like this::
 
306
 
 
307
      Subject: bzr x.y.z released!
 
308
 
 
309
      <<Summary paragraph from news>>
 
310
 
 
311
      The Bazaar team is happy to announce availability of a new
 
312
      release of the bzr adaptive version control system.
 
313
      Bazaar is part of the GNU system <http://gnu.org/>.
 
314
 
 
315
      Thanks to everyone who contributed patches, suggestions, and
 
316
      feedback.
 
317
 
 
318
      Bazaar is now available for download from
 
319
      http://bazaar-vcs.org/Download as a source tarball; packages
 
320
      for various systems will be available soon.
 
321
 
 
322
      <<NEWS section from this release back to the last major release>>
 
323
 
 
324
   Feel free to tweak this to your taste.
 
325
 
 
326
#. Make an announcement through <https://launchpad.net/bzr/+announce>
 
327
 
 
328
#. Update the IRC channel topic. Use the ``/topic`` command to do this,
 
329
   ensuring the new topic text keeps the project name, web site link, etc.
 
330
 
 
331
#. Announce on http://freshmeat.net/projects/bzr/
 
332
 
 
333
   This should be done for beta releases, release candidates and final
 
334
   releases. If you do not have a Freshmeat account yet, ask one of the
 
335
   existing admins.
 
336
 
 
337
#. Update `<http://en.wikipedia.org/wiki/Bazaar_(software)>`_ -- this should
 
338
   be done for final releases but not for beta releases or Release Candidates.
 
339
 
 
340
#. Update the python package index: <http://pypi.python.org/pypi/bzr> - best
 
341
   done by running ::
 
342
 
 
343
       python setup.py register
 
344
 
 
345
   Remember to check the results afterwards.
 
346
 
 
347
   To be able to register the release you must create an account on
 
348
   <http://pypi.python.org/pypi> and have one of the existing owners of
 
349
   the project add you to the group.
 
350
 
 
351
 
 
352
Merging the released code back to trunk
 
353
---------------------------------------
 
354
 
 
355
The rule is to keep ``NEWS`` sections sorted by date. You'll need to
 
356
review the merge and make sure that that is respected.
 
357
 
 
358
Merge the release branch back into the trunk.  Check that changes in NEWS
 
359
were merged into the right sections.  If it's not already done, advance
 
360
the version number in ``bzr`` and ``bzrlib/__init__.py``.  Submit this
 
361
back into pqm for bzr.dev.
 
362
 
 
363
As soon as you change the version number in trunk, make sure you have
 
364
created the corresponding milestone to ensure the continuity in bug
 
365
targeting or nominating. Depending on the change, you may even have to
 
366
create a new series (if your change the major or minor release number), in
 
367
that case go to `At the start of a release cycle` and follow the instructions from there.
 
368
 
 
369
You should also merge (not pull) the release branch into
 
370
``lp:~bzr/bzr/current``, so that branch contains the current released code
 
371
at any time.
 
372
 
 
373
Releases until the final one
 
374
----------------------------
 
375
 
 
376
Congratulations - you have made your first release.  Have a beer
 
377
or fruit juice - it's on the house! If it was a beta, or
 
378
candidate, you're not finished yet. Another beta or candidate or
 
379
hopefully a final release is still to come.
 
380
 
 
381
The process is the same as for the first release. Goto `Doing a
 
382
particular release`_ and follow the instructions again. Some details change
 
383
between beta, candidate and final releases, but they should be
 
384
documented. If the instructions aren't clear enough, please fix them.
 
385
 
 
386
 
 
387
See also
 
388
--------
 
389
 
 
390
* `Packaging into the bzr PPA <ppa.html>`_ to make and publish Ubuntu
 
391
  packages.
 
392
* `Bazaar Developer Document Catalog <index.html>`_
 
393
* `Development cycles <cycle.html>`_: things that happen during the cycle
 
394
  before the actual release.
 
395
 
 
396
..
 
397
   vim: filetype=rst textwidth=74 ai shiftwidth=4