~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/releasing.txt

Support Unicode paths for ftp transport (encoded as utf8).

* bzrlib/transport/ftp/__init__.py:
(FtpTransport._remote_path): Remove the work around, we send and
receive utf8 paths.

* bzrlib/tests/per_transport.py:
(TransportTests.test_unicode_paths): Check that the *server* can
support Unicode paths).

* bzrlib/tests/ftp_server/pyftpdlib_based.py:
(BzrConformingFS.ftp2fs): Added to decode utf8 received paths.

* bzrlib/tests/ftp_server/medusa_based.py:
(FTPTestServer): Declare that medusa can't support Unicode paths
in an had-hoc way.

* bzrlib/osutils.py:
(fancy_rename): Ensure all paths are unicode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Releasing Bazaar
2
 
################
 
2
================
3
3
 
4
4
This document describes the processes for making and announcing a Bazaar
5
5
release, and managing the release process.  This is just one phase of the
6
 
`overall development cycle
7
 
<http://doc.bazaar.canonical.com/developers/cycle.html>`_, (go re-read this
8
 
document to ensure it hasn't been updated since you last read it) but it's
9
 
the most complex part.
10
 
 
11
 
If you're doing your first release you can follow this document and read
12
 
each step explanation. It's also a good practice to read it for any release
13
 
to ensure you don't miss a step and to update it as the release process
14
 
evolves.
 
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.
15
10
 
16
11
If you're helping the Release Manager (RM) for one reason or another, you
17
12
may notice that he didn't follow that document scrupulously. He may have
18
13
good reasons to do that but he may also have missed some parts.
19
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
 
20
18
.. contents::
21
19
 
22
20
 
23
21
Preconditions
24
 
=============
25
 
 
26
 
#. PQM access rights (or you won't be able to land any change)
 
22
-------------
27
23
 
28
24
#. Download the pqm plugin and install it into your ``~/.bazaar/plugins``::
29
25
 
30
26
     bzr branch lp:bzr-pqm ~/.bazaar/plugins/pqm
31
27
 
32
 
#. Alternatively, you can download and install ``lp:hydrazine`` (the main
33
 
   difference is that hydrazine requires the branch to land to be hosted on
34
 
   launchpad).
35
 
 
36
 
What do we release
37
 
==================
38
 
 
39
 
In this document, we're talking about source releases only, packages and
40
 
installers are built from this but we won't talk about them here.
41
 
 
42
 
Every release is part of a series, ``bzr-2.4.1`` is part of series ``2.4``.
43
 
 
44
 
We do two different kind of releases: the betas releases and the stable
45
 
releases for a given series.
46
 
 
47
 
For a given series, releases will be done to deliver new versions of bzr to
48
 
different kinds of users:
49
 
 
50
 
#. beta releases: named ``x.ybn`` where ``x.y`` is the series and ``n``
51
 
   starts at 1 and is incremented. These releases are targeted to beta
52
 
   testers who don't want to run from source but are interested in features
53
 
   or improvements.
54
 
 
55
 
#. stable releases: name ``x.y.z`` where ``x.y.`` is the series and ``z``
56
 
   starts at 1 and is incremented. These releases are targeted at people
57
 
   that want bugfixes only and no new features.
58
 
 
59
 
 
60
 
Differences in the release process between beta and stable release will be
61
 
mentioned when needed.
62
 
 
63
 
When do we relase ?
64
 
===================
65
 
 
66
 
As of July 2011, we maintain four series (and one that is about to be EOLed).
67
 
Concurrently releasing them all at the same time makes it harder to shorten
68
 
the delay between the source availability and the package building longer
69
 
than necessary (we delay the official announcement until most of our users
70
 
can install the new release).
71
 
 
72
 
In order to continue to do time-based releases, we need to plan the
73
 
releases by series to minimize the collisions. In the end, it's the Release
74
 
Manager call to decide whether he prefers to do all releases at once
75
 
though, so the rules presented here are a conservative approach.
76
 
 
77
 
We want to respect the following rules:
78
 
 
79
 
#. as much as possible releases should not disturb development, and
80
 
   ongoing development should not disturb releases,
81
 
 
82
 
#. the most recent development series should release once a month during
83
 
   the beta period (see `Development cycles <cycle.html>`_ for more
84
 
   details),
85
 
 
86
 
#. the most recent stable series should release every other month (based
87
 
   on the amount of bug fixes, this can be shorter or longer depending on
88
 
   the bugs importance),
89
 
 
90
 
#. previous series should release on a regular basis without interfering
91
 
   with the most recent series with a decreasing order of priority (again
92
 
   this should be based on bugs importance and user feedback),
93
 
 
94
 
#. the death of a series should be planned ahead of time. 6 months should
95
 
   give enough time to our users to migrate to a more recent series. This
96
 
   doesn't mean we will make a release at the end of the series, just that
97
 
   before the end date we *could* possibly put out another release if
98
 
   there was a sufficiently important fix.  Beyond that date, we won't
99
 
   even land changes on that branch (unless something causes a miraculous
100
 
   resurrection.)
101
 
 
102
 
#. there should not be more than 2 releases in the same week (but the
103
 
   Release Manager is free to ignore this (get in touch with packagers
104
 
   though),
105
 
 
106
 
#. the series are aligned with Ubuntu releases for convenience since we
107
 
   create a new series every 6 months. This means that we support the
108
 
   stable series for 18 months. Note that we also propose the most recent
109
 
   stable series via the stable PPA but that the SRU processs allow us to
110
 
   reach a wider audience.
111
 
 
112
 
At the start of a series cycle
113
 
==============================
114
 
 
115
 
To start a new series cycle:
116
 
 
117
 
#. Create a new series ``x.y`` at <https://launchpad.net/bzr/+addseries>.
118
 
 
119
 
#. Add milestones at <https://launchpad.net/bzr/x.y/+addmilestone> to that
120
 
   series for the beta releases and the stable series mentioning their
121
 
   expected dates. Only the milestone associated to the next release in
122
 
   this series should be left active to avoid clutter when targeting bugs.
123
 
 
124
 
#. If you made a new series, you will need to create a new pqm-controlled
125
 
   branch for this release series. This branch will be used only from the
126
 
   first non-beta release onwards. It needs to be created by a Canonical
127
 
   sysadmin (ask the core devs for instructions or to do it for you).
128
 
 
129
 
#. Start a new release-notes file::
130
 
 
131
 
       cd doc/en/release-notes
132
 
       cp series-template.txt bzr-x.y.txt  # e.g. bzr-2.3.txt
133
 
       bzr add bzr-x.y.txt
134
 
 
135
 
#. Start a new whats-new file::
136
 
 
137
 
       cd doc/en/whats-new
138
 
       cp template.txt bzr-x.y.txt  # e.g. bzr-2.6.txt
139
 
       bzr add bzr-x.y.txt
140
 
 
141
 
 
142
 
At the start of a release cycle
143
 
===============================
 
28
 
 
29
Starting a cycle
 
30
----------------
144
31
 
145
32
To start a new release cycle:
146
33
 
 
34
#. Create a new series at <https://launchpad.net/bzr/+addseries>. There is one
 
35
   series for every *x.y* release.
 
36
 
 
37
#. Go to the series web page at <https://launchpad.net/bzr/x.y>
 
38
 
 
39
#. Create a new release at
 
40
   <https://launchpad.net/bzr/x.y/+addrelease> and add
 
41
   information about this release. We will not use it yet, but it
 
42
   will be available for targeting or nominating bugs.
 
43
 
 
44
#. We create a new pqm-controlled branch for this release series, by
 
45
   asking a Canonical sysadmin.
 
46
   This branch means that from the first release beta or candidate onwards,
 
47
   general development continues on the trunk, and only
 
48
   specifically-targeted fixes go into the release branch.
 
49
 
 
50
#. Add milestones at <https://edge.launchpad.net/bzr/x.y/+addmilestone> to
 
51
   that series for the beta release, release candidate and the final release,
 
52
   and their expected dates.
 
53
 
 
54
#. Update the version number in the ``bzr`` script, and the
 
55
   ``bzrlib/__init__.py`` file. Make sure there is always a corresponding
 
56
   milestone when you change that version number.
 
57
 
147
58
#. Send mail to the list with the key dates, who will be the release
148
59
   manager, and the main themes or targeted bugs.  Ask people to nominate
149
60
   objectives, or point out any high-risk things that are best done early,
150
61
   or that interact with other changes. This is called the metronome mail
151
62
   and is described in `Development cycles <cycle.html>`_.
152
63
 
153
 
#. Make a local branch to prepare the release::
154
 
 
155
 
        bzr branch lp:bzr/x.y x.y-dev
156
 
 
157
 
   If you're doing your first beta release, branch from trunk::
158
 
 
159
 
       bzr branch lp:bzr x.y-dev
160
 
 
161
 
   Note that you will generally reuse the same branch for all releases in a
162
 
   given series.
 
64
#. Make a local branch for preparing this release.  (Only for the first
 
65
   release in a series, otherwise you should already have a branch.) ::
 
66
 
 
67
     bzr branch trunk prepare-1.14
163
68
 
164
69
#. Configure pqm-submit for this branch, with a section like this (where
165
 
   ``x.y`` is the series for your release). **Or use hydrazine for easier
166
 
   setup** ``~/.bazaar/locations.conf``::
 
70
   x.y is the version to release).
 
71
   ``~/.bazaar/locations.conf``::
167
72
 
168
 
        [/home/mbp/bzr/x.y-dev]
 
73
        [/home/mbp/bzr/prepare-x.y]
169
74
        pqm_email = Canonical PQM <pqm@bazaar-vcs.org>
170
75
        submit_branch = http://bazaar.launchpad.net/~bzr-pqm/bzr/x.y
171
76
        parent_branch = http://bazaar.launchpad.net/~bzr-pqm/bzr/x.y
172
 
        public_branch = http://bazaar.example.com/x.y-dev
 
77
        public_branch = http://bazaar.example.com/prepare-x.y
173
78
        submit_to = bazaar@lists.canonical.com
174
79
        smtp_server = mail.example.com:25
175
80
 
176
 
    Please see <http://doc.bazaar.canonical.com/developers/HACKING.html#an-overview-of-pqm>
 
81
    Please see <http://doc.bazaar-vcs.org/developers/HACKING.html#an-overview-of-pqm>
177
82
    for more details on PQM
178
83
 
179
 
#. Update the version number in the ``bzr`` script, and the
180
 
   ``bzrlib/__init__.py`` file::
181
 
   
182
 
       version_info = (x, y, z, 'dev', 0)
183
 
   
184
 
#. Add a new section at the top of the current release notes (in
185
 
   ``doc/en/release-notes``) about the new release, including its version
186
 
   number and the headings from ``release-template.txt``.
187
 
 
188
 
#. Update the "What's New" documents in ``doc/en/whats-new``.
189
 
 
190
 
#. Make sure a milestone exists for your release and that it is active,
191
 
   <https://launchpad.net/bzr/x.y> lists the existing milestones,
192
 
   <https://launchpad.net/bzr/x.y/x.y.z/+edit> allows you to toggle the
193
 
   active flag.
194
 
 
195
 
#. Commit this and send it to PQM.
196
 
 
197
 
 
198
 
Doing a particular release
199
 
==========================
200
 
 
201
 
Update the source code
202
 
----------------------
203
 
 
204
 
#. Check that there is a milestone for the release you're doing. If there
205
 
   is no milestone it indicates a process problem - make the milestone but
206
 
   also mail the list to raise this issue in our process. Milestones are
207
 
   found at <https://launchpad.net/bzr/+milestone/x.y.z>.
208
 
 
209
84
#. In the release branch, update  ``version_info`` in ``./bzrlib/__init__.py``.
210
85
   Make sure the corresponding milestone exists.
211
86
   Double check that ./bzr ``_script_version`` matches ``version_info``. Check
212
 
   the output of ``./bzr --version``.
 
87
   the output of ``bzr --version``.
213
88
 
214
89
   For beta releases use::
215
90
 
216
 
       version_info = (2, 1, 0, 'beta', SERIAL)
217
 
 
218
 
   For instance 2.1b1::
219
 
 
220
91
       version_info = (2, 1, 0, 'beta', 1)
221
92
 
222
 
   For stable releases use::
223
 
 
224
 
       version_info = (2, 1, 2, 'final', 0)
225
 
 
226
 
#. Update the ``./doc/en/release-notes/`` section for this release.
227
 
 
228
 
   Fill out the date and a description of the release under the existing
229
 
   header. If there isn't one, follow the instructions above for using the
230
 
   ``release-template.txt`` file.
231
 
 
232
 
   See *2.1.1* or similar for an example of what this looks like.
233
 
 
234
 
#. Add or check the summary of the release into the "What's New" document.
235
 
 
236
 
#. To check that all bugs mentioned in the release notes are actually
237
 
   marked as closed in Launchpad, you can run
238
 
   ``tools/check-newsbugs.py``::
239
 
 
240
 
     ./tools/check-newsbugs.py doc/en/release-notes/bzr-x.y.txt
241
 
 
242
 
   As of 2011-07-18, all bugs mentioned in the output of the script requires
243
 
   some sort of intervention (either changing the status if it's not 'Fix
244
 
   Released' or setting a different milestone if the bug hasn't been
245
 
   fixed). A few false positives may remain in the older series, don't let
246
 
   this slow you down too much. This script accepts options you may find
247
 
   useful, use ``./tools/check-newsbugs.py`` to display its usage (``-w``
248
 
   will open each bug in your browser for example).
249
 
 
250
 
#. For beta releases update the translation template::
251
 
 
252
 
     make -f po/bzr.pot
253
 
 
254
 
   This is especially important for the final beta release which is
255
 
   when translations are frozen and translators are requested to make
256
 
   the translations.
257
 
 
258
 
#. For stable releases update the translations::
259
 
 
260
 
     bzr merge lp:~bzr-core/bzr/bzr-translations-export-x.y
 
93
 
 
94
   For release candidates use::
 
95
 
 
96
       version_info = (2, 0, 1, 'candidate', 1)
 
97
 
 
98
 
 
99
Starting the release phase
 
100
--------------------------
 
101
 
 
102
#. Create a new milestone at <https://launchpad.net/bzr/x.y/+addmilestone>
 
103
   for the beta release or release candidate if you haven't already.
 
104
 
 
105
#. Add the date and release number to ``./NEWS``
 
106
 
 
107
   Depending on whether you're doing a beta or a bugfix release, you'll
 
108
   have to create a NEWS section for your release in the right
 
109
   place. Most of the time, the new section is at the top of the file
 
110
   (look what have been done for the various 2.0x and 2.1.0bx releases).
 
111
   The rule is to keep the sections sorted by date. You'll need to be
 
112
   cautious when merging back to trunk to respect that.
 
113
 
 
114
#. To check that all bugs mentioned in ``./NEWS`` are actually marked as
 
115
   closed in Launchpad, you can run ``tools/check-newsbugs.py``::
 
116
 
 
117
     ./tools/check-newsbugs.py NEWS
 
118
 
 
119
   (But note there can be some false positives, and this script may be
 
120
   flaky <https://bugs.edge.launchpad.net/bzr/+bug/354985>.  Don't let
 
121
   this slow you down too much.)
 
122
 
 
123
#. Summarize into one or two paragraphs what's new in this release.
261
124
 
262
125
#. Commit these changes to the release branch, using a command like::
263
126
 
264
 
     bzr commit -m "Release 2.3.1"
 
127
     bzr commit -m "Release 1.14."
265
128
 
266
129
   The diff before you commit will be something like::
267
130
 
268
 
      === modified file 'bzrlib/__init__.py'
269
 
      --- bzrlib/__init__.py    2011-02-09 06:35:00 +0000
270
 
      +++ bzrlib/__init__.py    2011-03-10 10:24:47 +0000
271
 
      @@ -52,7 +52,7 @@
272
 
       # Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
273
 
       # releaselevel of 'dev' for unreleased under-development code.
274
 
       
275
 
      -version_info = (2, 3, 1, 'dev', 0)
276
 
      +version_info = (2, 3, 1, 'final', 0)
277
 
       
278
 
       # API compatibility version
279
 
       api_minimum_version = (2, 3, 0)
280
 
      
281
 
      === modified file 'doc/en/release-notes/bzr-2.3.txt'
282
 
      --- doc/en/release-notes/bzr-2.3.txt      2011-03-09 08:30:16 +0000
283
 
      +++ doc/en/release-notes/bzr-2.3.txt      2011-03-10 10:40:47 +0000
284
 
      @@ -8,23 +8,10 @@
285
 
       bzr 2.3.1
286
 
       #########
287
 
       
288
 
      -:2.3.1: NOT RELEASED YET
289
 
      -
290
 
      -External Compatibility Breaks
291
 
      -*****************************
292
 
      -
293
 
      -.. These may require users to change the way they use Bazaar.
294
 
      -
295
 
      -New Features
296
 
      -************
297
 
      -
298
 
      -.. New commands, options, etc that users may wish to try out.
299
 
      -
300
 
      -Improvements
301
 
      -************
302
 
      -
303
 
      -.. Improvements to existing commands, especially improved performance 
304
 
      -   or memory usage, or better results.
305
 
      +:2.3.1: 2011-03-10
306
 
      +
307
 
      +This is a bugfix release. Upgrading is recommended for all users of earlier
308
 
      +2.3 releases.
309
 
       
310
 
       Bug Fixes
311
 
       *********
312
 
      
313
 
      === modified file 'doc/en/whats-new/whats-new-in-2.3.txt'
314
 
      --- doc/en/whats-new/whats-new-in-2.3.txt 2011-02-03 16:29:18 +0000
315
 
      +++ doc/en/whats-new/whats-new-in-2.3.txt 2011-03-10 11:10:36 +0000
316
 
      @@ -17,8 +17,13 @@
317
 
       improvements made to the core product, it highlights enhancements within the
318
 
       broader Bazaar world of potential interest to those upgrading.
319
 
       
320
 
      -Bazaar 2.3.0 is fully compatible both locally and on the network with 2.0 2.1,
321
 
      -and 2.2, and can read and write repositories generated by all previous
322
 
      +Bazaar 2.3.1 includes all the fixes in the un-released 2.0.7, 2.1.4 and 2.2.5
323
 
      +versions that weren't included in 2.3.0 and fixes some bugs on its own.
324
 
      +
325
 
      +See the :doc:`../release-notes/index` for details.
326
 
      +
327
 
      +Bazaar 2.3 is fully compatible both locally and on the network with 2.0, 2.1,
328
 
      +and 2.2. It can read and write repositories generated by all previous
329
 
       versions.
330
 
       
331
 
       Changed Behaviour
332
 
      
 
131
     === modified file 'NEWS'
 
132
     --- NEWS        2008-09-17 23:09:18 +0000
 
133
     +++ NEWS        2008-09-23 16:14:54 +0000
 
134
     @@ -4,6 +4,23 @@
 
135
 
 
136
      .. contents::
 
137
 
 
138
     +bzr 1.7 2008-09-23
 
139
     +------------------
 
140
     +
 
141
     +This release includes many bug fixes and a few performance and feature
 
142
     +improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
143
     +like how ``bzr add`` scans for unknown files and adds them. A bit more
 
144
     +polish has been applied to the stacking code. The b-tree indexing code has
 
145
     +been brought in, with an eye on using it in a future repository format.
 
146
     +There are only minor installer changes since bzr-1.7rc2.
 
147
     +
 
148
      bzr 1.7rc2 2008-09-17
 
149
      ---------------------
 
150
 
 
151
 
 
152
     === modified file 'bzrlib/__init__.py'
 
153
     --- bzrlib/__init__.py  2008-09-16 21:39:28 +0000
 
154
     +++ bzrlib/__init__.py  2008-09-23 16:14:54 +0000
 
155
     @@ -41,7 +41,7 @@
 
156
      # Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
 
157
      # releaselevel of 'dev' for unreleased under-development code.
 
158
 
 
159
     -version_info = (1, 7, 0, 'candidate', 2)
 
160
     +version_info = (1, 7, 0, 'final', 0)
 
161
 
 
162
 
 
163
      # API compatibility version: bzrlib is currently API compatible with 1.7.
333
164
 
334
165
#. Tag the new release::
335
166
 
336
 
     bzr tag bzr-2.3.1
 
167
     bzr tag bzr-1.14
337
168
 
338
 
#. Push those changes to a bzr branch that is public and accessible on the
339
 
   Internet. PQM will pull from this branch when it attempts to merge your
340
 
   changes. Then submit those changes to PQM for merge into the appropriate
341
 
   release branch::
 
169
#. Push those changes to a bzr reposistory that is public and accessible on
 
170
   the Internet. PQM will pull from this repository when it attempts to merge
 
171
   your changes. Then submit those changes to PQM for merge into the
 
172
   appropriate release branch::
342
173
 
343
174
     bzr push
344
 
     bzr pqm-submit -m "(vila) Release 2.3.1 (Vincent Ladeuil)"
345
 
 
346
 
   Or with hydrazine::
347
 
 
348
 
     bzr lp-propose -m "Release 1.14" --approve lp:bzr/1.14
349
 
     feed-pqm bzr
 
175
     bzr pqm-submit -m "(mbp) prepare 1.14"
350
176
 
351
177
#. When PQM succeeds, pull down the master release branch.
352
178
 
361
187
#. Now we'll try expanding this tarball and running the test suite
362
188
   to check for packaging problems::
363
189
 
364
 
     make check-dist-tarball | subunit2pyunit
365
 
 
366
 
   You may encounter failures while running the test suite caused by your
367
 
   locally installed plugins. Use your own judgment to decide if you can
368
 
   release with these failures. When in doubt, disable the faulty plugins
369
 
   one by one until you get no more failures. Alternatively, you can use
370
 
   ``BZR_DISABLE_PLUGINS`` or ``BZR_PLUGIN_PATH=-site`` to disable one or
371
 
   all plugins.
372
 
 
373
 
   Until <http://pad.lv/839461> is fixed, you may encounter issues if you
374
 
   cut a release for old stable branches (<= 2.2) and use a more recent
375
 
   OS/distro. If that's the case, check the bug status and use the following
376
 
   workaround if no fix is available::
377
 
 
378
 
     export TTPATH=<local branch of lp:testtools -r 0.9.2>
379
 
     export SUPATH=<local branch of lp:subunit -r 0.0.6>
380
 
     PYTHONPATH=$TTPATH:$SUPATH/python PATH=$SUPATH/filters:${PATH} BZR_PLUGIN_PATH=-site make check-dist-tarball PYTHON=python2.6 | subunit2pyunit
381
 
 
382
 
   Remember that PQM has just tested everything too, this step is
383
 
   particularly testing that the pyrex extensions, which are updated
384
 
   by your local pyrex version when you run make dist, are in good
385
 
   shape.
 
190
     make check-dist-tarball
 
191
 
 
192
   You may encounter failures while running the test suite caused
 
193
   by your locally installed plugins. Use your own judgment to
 
194
   decide if you can release with these failures. When in doubt,
 
195
   disable the faulty plugins one by one until you get no more
 
196
   failures.
386
197
 
387
198
 
388
199
Publishing the source tarball
389
200
-----------------------------
390
201
 
391
 
#. Go to the relevant <https://launchpad.net/bzr/x.y> series page in Launchpad.
392
 
 
393
 
#. Create a release of the milestone, and upload the source tarball and
394
 
   the GPG signature.  Or, if you prefer, use the
395
 
   ``tools/packaging/lp-upload-release`` script to do this. Note that
396
 
   this changes what the download widget on the Launchpad bzr home
397
 
   page shows, so don't stop the release process yet, or platform binary
398
 
   installers won't be made and the download list will stay very small!
399
 
   <https://bugs.launchpad.net/launchpad/+bug/586445>
400
 
 
401
 
 
402
 
Kick off the next cycle
403
 
-----------------------
404
 
 
405
 
From that point, there is no possible return, the tarball has been uploaded
406
 
so you can relax a bit.
407
 
 
408
 
You're still holding a "social" lock on the launchpad branch though. Until
409
 
your start the next cycle, nobody should land anything on this branch. If
410
 
they do, they either targeted the wrong branch or didn't update the news
411
 
file correctly, so the sooner the branch is opened again, the better.
412
 
 
413
 
This matters more for ``lp:bzr`` than for ``lp:bzr/x.y``, ``lp:bzr`` should
414
 
always be open for landing, so you should do `At the start of a release
415
 
cycle`_ as soon as possible (i.e. update the version number in ``bzr`` and
416
 
``bzrlib/__init__``, create/update the news files and create/update the
417
 
milestone for the next relase).
418
 
 
419
 
You may also need to do `At the start of a series cycle`_ if you're starting
420
 
a new series.
421
 
 
422
 
The final beta - branching and translations
423
 
-------------------------------------------
424
 
 
425
 
A word of caution: the instructions above works well for all releases but
426
 
there is one special case that requires a bit more care: when you release
427
 
the *last* beta for a given ``x.y`` series (from trunk aka lp:bzr), you need
428
 
to setup *two* branches for the next cycle:
429
 
 
430
 
#. ``lp:bzr`` needs to be opened for the next *series* ``x.(y+1)``
431
 
 
432
 
#. ``lp:bzr/x.y`` needs to be opened for the next *release* ``x.y.0`` in the
433
 
   series. Since this is first real use of ``lp:bzr/x.y``, this is also the
434
 
   deadline for the PQM branch to be created.
435
 
 
436
 
Both are important as ``lp:bzr`` should remain open so any change can be
437
 
landed, ``lp:bzr/x.y`` on the other hand should be ready to receive bug
438
 
fixes.
439
 
 
440
 
``lp:bzr`` is generally more important as the bug fixes on ``lp:bzr/x.y``
441
 
won't be released sooner than a month from now whereas people may already
442
 
been waiting to land on ``lp:bzr``.
443
 
 
444
 
In a nutshell:
445
 
 
446
 
#. Create or update the ``x.y`` PQM branch based on whatever
447
 
   revision you want to release
448
 
 
449
 
#. Open ``lp:bzr`` for ``x.(y+1)``
450
 
 
451
 
#. Release ``x.y.0`` from ``lp:bzr/x.y``
452
 
 
453
 
#. Open ``lp:bzr/x.y`` for bug fixes
454
 
 
455
 
You also need to ensure Launchpad is set up to import/export
456
 
translations for the new branch and inform translators.
457
 
 
458
 
#. Push a branch::
459
 
 
460
 
     bzr push lp:~bzr-core/bzr/bzr-translations-export-x.y
461
 
 
462
 
#. On the translations series synchronization settings page
463
 
   <https://translations.launchpad.net/bzr/x.y/+translations-settings>
464
 
   turn on ``Import template files`` then for exports click ``Choose a
465
 
   target branch`` and point it at the branch you just pushed.
466
 
 
467
 
#. E-mail translators to announce that the forthcoming stable release
468
 
   of bzr is ready for translations.  Send to
469
 
   ``translators@lists.launchpad.net`` and
470
 
   ``ubuntu-translators@lists.ubuntu.com``.
471
 
 
472
 
#. The series is now frozen for strings and API, see below for adding
473
 
   that to the announcement.
 
202
#. Go to the relevant milestone page in Launchpad.
 
203
 
 
204
#. Within that release, upload the source tarball and the GPG
 
205
   signature.  Or, if you prefer, use the
 
206
   ``tools/packaging/lp-upload-release`` script to do this.
 
207
 
474
208
 
475
209
Announcing the source freeze
476
210
----------------------------
477
211
 
478
 
#. Post to the ``bazaar@lists.canonical.com`` list, saying that the source
479
 
   has been frozen (gone gold). Be extra clear that this is only a *source*
480
 
   release targeted at packagers and installer builders (see
481
 
   <https://bugs.launchpad.net/launchpad/+bug/645084>).  This is the cue for
482
 
   platform maintainers and plugin authors to update their code.  This is
483
 
   done before the general public announcement of the release.
484
 
 
485
 
   The freeze announcement generally guess the date of the official public
486
 
   announcement, for the most recent stable series (the one supported by the
487
 
   installers and most of the distributions) it's generally a few days after
488
 
   the freeze. For older series supported only via SRUs for Ubuntu, we don't
489
 
   control the process as tightly so guessing the date is not appropriate.
490
 
 
491
 
   For the final beta release include in your announcement a notice of
492
 
   API and translation freezes nothing that public methods should not
493
 
   be removed or changed and strings should not be added or changed.
494
 
 
495
 
#. Pause for a few days. 
 
212
#. Post to the ``bazaar`` list, saying that the source has been frozen.
 
213
   This is the cue for platform maintainers and plugin authors to update
 
214
   their code.  This is done before the general public announcement of the
 
215
   release.
496
216
 
497
217
 
498
218
Publishing the release
503
223
we have a releasable product.  The next step is to make it generally
504
224
available to the world.
505
225
 
506
 
#. Go to the release web page at <https://launchpad.net/bzr/x.y/x.y.z>
507
 
 
508
 
#. Announce on the `Bazaar website <http://bazaar.canonical.com/>`_.
 
226
go to the release
 
227
 
 
228
#. Within that release, upload the source tarball and zipfile and the GPG
 
229
   signature.  Or, if you prefer, use the
 
230
   ``tools/packaging/lp-upload-release`` script to do this.
 
231
 
 
232
#. Link from http://bazaar-vcs.org/SourceDownloads to the tarball and
 
233
   signature.
 
234
 
 
235
#. Announce on the `Bazaar website <http://bazaar-vcs.org/>`_.
509
236
   This page is edited via the lp:bzr-website branch. (Changes
510
237
   pushed to this branch are refreshed by a cron job on escudero.)
511
238
 
 
239
#. Announce on the `Bazaar wiki <http://bazaar-vcs.org/Welcome>`_.
 
240
 
512
241
#. Check that the documentation for this release is available in
513
 
   <http://doc.bazaar.canonical.com>.  It should be automatically build when the
 
242
   <http://doc.bazaar-vcs.org>.  It should be automatically build when the
514
243
   branch is created, by a cron script ``update-bzr-docs`` on
515
 
   ``escudero``.
 
244
   ``escudero``. As of today (2009-08-27) ``igc`` manually updates the
 
245
   pretty version of it.
516
246
 
517
247
 
518
248
Announcing the release
522
252
 
523
253
#. Make an announcement mail.
524
254
 
525
 
   For beta releases, this is sent to the ``bazaar@lists.canonical.com`` and
526
 
   ``bazaar-announce@lists.canonical.com`` lists.
527
 
 
528
 
   For stable releases (excluding SRUs which are for older stable releases),
529
 
   it should also be cc'd to ``info-gnu@gnu.org``,
 
255
   For release candidates or beta releases, this is sent to the ``bazaar``
 
256
   list only to inform plugin authors and package or installer managers.
 
257
 
 
258
   Once the installers are available, the mail can be sent to the
 
259
   ``bazaar-announce`` list too.
 
260
 
 
261
   For final releases, it should also be cc'd to ``info-gnu@gnu.org``,
530
262
   ``python-announce-list@python.org``, ``bug-directory@gnu.org``.
531
263
 
532
264
   In all cases, it is good to set ``Reply-To: bazaar@lists.canonical.com``,
534
266
 
535
267
   The announce mail will look something like this::
536
268
 
537
 
      Subject: bzr x.y.z released!
 
269
      Subject: bzr x.yy released!
 
270
 
 
271
      <<Summary paragraph from news>>
538
272
 
539
273
      The Bazaar team is happy to announce availability of a new
540
274
      release of the bzr adaptive version control system.
541
 
 
542
 
      Bazaar <http://bazaar.canonical.com/> is a Canonical project and part
543
 
      of the GNU project <http://gnu.org/> to produce a free operating
544
 
      system.
545
 
 
546
 
      <<Summary paragraph from news>>
 
275
      Bazaar is part of the GNU system <http://gnu.org/>.
547
276
 
548
277
      Thanks to everyone who contributed patches, suggestions, and
549
278
      feedback.
550
279
 
551
280
      Bazaar is now available for download from
552
 
      https://launchpad.net/bzr/x.y/x.y.z/ as a source tarball; packages
 
281
      http://bazaar-vcs.org/Download as a source tarball; packages
553
282
      for various systems will be available soon.
554
283
 
555
 
      <<release notes from this release back to the last major release>>
 
284
      <<NEWS section from this release back to the last major release>>
556
285
 
557
286
   Feel free to tweak this to your taste.
558
287
 
559
288
#. Make an announcement through <https://launchpad.net/bzr/+announce>
560
289
 
 
290
#. Update the IRC channel topic. Use the ``/topic`` command to do this,
 
291
   ensuring the new topic text keeps the project name, web site link, etc.
 
292
 
561
293
#. Announce on http://freshmeat.net/projects/bzr/
562
294
 
563
 
   This should be done for beta releases and stable releases. If you do not
564
 
   have a Freshmeat account yet, ask one of the existing admins.
565
 
 
566
 
   The purpose here is to point users to the latest stable release
567
 
   (i.e. SRUs are excluded) while still publishing announcements for beta
568
 
   releases.
569
 
 
570
 
   There are several kinds of modifications that could be done there via the
571
 
   ``Administration`` box in the lower right area of the page:
572
 
 
573
 
   * Edit the project: This is where most of the URLs proposed in the
574
 
     ``Links`` box are edited. This should rarely change except for the URLs
575
 
     related to the latest stable release.
576
 
 
577
 
   * New announcement: When doing a release, put the summary of the release
578
 
     (you can't embed URLs there, the moderation staff remove them). Users
579
 
     can still access the releases notes via the ``Release Notes`` URL in
580
 
     the ``Links`` box in the upper right area of the page. When doing the
581
 
     first stable release in a series, delete the ``Unstable installers``
582
 
     <https://launchpad.net/bzr/x.y/x.ybn> and ``Unstable source tarball``
583
 
     <http://launchpad.net/bzr/x.y/x.ybn/+download/bzr-x.ybn.tar.gz>
584
 
     links. Conversely, when creating the first beta in a development
585
 
     series, create these links again. Check all links when doing other
586
 
     kinds of release.
587
 
 
588
 
   * Set direct download: When releasing a new stable release, this should
589
 
     point to the corresponding launchpad page:
590
 
     <https://launchpad.net/bzr/x.y/x.y.z/>
 
295
   This should be done for beta releases, release candidates and final
 
296
   releases. If you do not have a Freshmeat account yet, ask one of the
 
297
   existing admins.
591
298
 
592
299
#. Update `<http://en.wikipedia.org/wiki/Bazaar_(software)>`_ -- this should
593
 
   be done for the stable and beta releases.
 
300
   be done for final releases but not for beta releases or Release Candidates.
594
301
 
595
302
#. Update the python package index: <http://pypi.python.org/pypi/bzr> - best
596
303
   done by running ::
597
304
 
598
305
       python setup.py register
599
306
 
600
 
   Remember to check the results afterward -- this should be done for
601
 
   stable releases but not for beta releases nor SRUs.
 
307
   Remember to check the results afterwards.
602
308
 
603
309
   To be able to register the release you must create an account on
604
310
   <http://pypi.python.org/pypi> and have one of the existing owners of
608
314
Merging the released code back to trunk
609
315
---------------------------------------
610
316
 
611
 
Merge the release branch back into the trunk.  The ``doc/en/release-notes``
612
 
changes should be merged into the right place because each release series
613
 
has its own release-notes file, but double-check.
614
 
 
615
 
If it's not already done, advance the version number in ``bzr`` and
616
 
``bzrlib/__init__.py``.  Submit this back into pqm for bzr.dev.
 
317
Merge the release branch back into the trunk.  Check that changes in NEWS
 
318
were merged into the right sections.  If it's not already done, advance
 
319
the version number in ``bzr`` and ``bzrlib/__init__.py``.  Submit this
 
320
back into pqm for bzr.dev.
617
321
 
618
322
As soon as you change the version number in trunk, make sure you have
619
323
created the corresponding milestone to ensure the continuity in bug
620
324
targeting or nominating. Depending on the change, you may even have to
621
325
create a new series (if your change the major or minor release number), in
622
 
that case go to `At the start of a series cycle`_ and follow the
623
 
instructions from there.
 
326
that case go to `Starting a cycle` and follow the instructions from there.
624
327
 
 
328
You should also merge (not pull) the release branch into
 
329
``lp:~bzr/bzr/current``, so that branch contains the current released code
 
330
at any time.
625
331
 
626
332
Releases until the final one
627
333
----------------------------
628
334
 
629
 
Congratulations - you have made your first release.  Have a beer or fruit
630
 
juice - it's on the house! If it was a beta, you're not finished
631
 
yet. Another beta or hopefully a stable release is still to come.
632
 
 
633
 
The process is the same as for the first release. Goto `Doing a particular
634
 
release`_ and follow the instructions again. Some details change between
635
 
beta and stable releases, but they should be documented. If the instructions
636
 
aren't clear enough, please fix them.
637
 
 
638
 
 
639
 
Getting the release into Ubuntu
640
 
-------------------------------
641
 
 
642
 
(Feel free to propose or add new sections here about what we should do to
643
 
get bzr into other places.)
644
 
 
645
 
For the currently-under-development release of Ubuntu, no special action
646
 
is needed: the release should be picked by Debian and synced from there into
647
 
Ubuntu.
648
 
 
649
 
Releases off stable bzr branches should go in to the ``-updates`` of the
650
 
Ubuntu release that originally contained that branch.  (Ubuntu Lucid had
651
 
bzr 2.2.0, so should get every 2.2.x update.)  This means going through
652
 
the `SRU (Stable Release Updates)
653
 
<https://wiki.ubuntu.com/StableReleaseUpdates>`__ process.   
654
 
 
655
 
Since September 2010, bzr has received approval by the technical
656
 
board for the `MicroReleaseExceptions
657
 
<https://wiki.ubuntu.com/StableReleaseUpdates/MicroReleaseExceptions>`__
658
 
category so that whole bugfix releases can more easily be
659
 
approved.
660
 
 
661
 
Progress on these realeases is tracked on the `SRU wiki
662
 
<http://wiki.bazaar.canonical.com/UbuntuStableReleaseUpdates>`_
663
 
page.
664
 
 
665
 
**After making a bzr stable-release release, nominate the most serious bug
666
 
for the appropriate Ubuntu release and subscribe the `ubuntu-sru` team.**
667
 
 
668
 
This requires a couple of tricks (please reconsider and tweak as things
669
 
evolves from one release to the other):
670
 
 
671
 
 * create a distro task with the ``Also affects distribution`` button and
672
 
   select ``bzr (Ubuntu)``.
673
 
 
674
 
 * change the *URL* to point to ``ubuntu/+source/bzr`` instead of ``bzr``
675
 
   (this is needed if you create the distro task but not if it exists
676
 
   already). You should now be able to click the ``Nominate for release``
677
 
   button and select the right Ubuntu release. As of September 2010, this
678
 
   means:
679
 
 
680
 
  * ``oneiric`` for the 2.4 series,
681
 
  * ``natty`` for the 2.3 series,
682
 
  * ``maverick`` for the 2.2 series,
683
 
  * ``lucid`` for the 2.1 series,
684
 
 
685
 
 * Subscribe the ``~ubuntu-sru`` team to the bug.
686
 
 
687
 
 * Add a comment targeted to ``~ubuntu-sru`` explaining the expectations
688
 
   (we are targeting running the test suite during the build which, as of
689
 
   September 2010, fails for known reasons that are currently addressed).
690
 
   Search for bugs tagged with ``sru`` for examples and don't forget to tag
691
 
   the bug you selected.
 
335
Congratulations - you have made your first release.  Have a beer
 
336
or fruit juice - it's on the house! If it was a beta, or
 
337
candidate, you're not finished yet. Another beta or candidate or
 
338
hopefully a final release is still to come.
 
339
 
 
340
The process is the same as for the first release. Goto `Starting the
 
341
release phase`_ and follow the instructions again. Some details change
 
342
between beta, candidate and final releases, but they should be
 
343
documented. If the instructions aren't clear enough, please fix them.
692
344
 
693
345
 
694
346
See also