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
17
#. Download the pqm plugin and install it into your ``~/.bazaar/plugins``::
19
bzr branch lp:bzr-pqm ~/.bazaar/plugins/pqm
25
To start a new release cycle:
27
#. Create a new series at <https://launchpad.net/bzr/+addseries>. There is one
28
series for every *x.y* release.
30
#. Go to the series web page at <https://launchpad.net/bzr/2.0>
32
#. Create a new release at
33
<https://launchpad.net/bzr/2.0/+addrelease> and add
34
information about this release. We will not use it yet, but it
35
will be available for targeting or nominating bugs.
37
#. We create a new pqm-controlled branch for this release series, by
38
asking a Canonical sysadmin.
39
This branch means that from the first release beta or candidate onwards,
40
general development continues on the trunk, and only
41
specifically-targeted fixes go into the release branch.
43
#. Add milestones at <https://edge.launchpad.net/bzr/2.0/+addmilestone> to
44
that series for the beta release, release candidate and the final release,
45
and their expected dates.
47
#. Update the version number in the ``bzr`` script, and the
48
``bzrlib/__init__.py`` file.
50
#. Send mail to the list with the key dates, who will be the release
51
manager, and the main themes or targeted bugs. Ask people to nominate
52
objectives, or point out any high-risk things that are best done early,
53
or that interact with other changes. This is called the metronome mail
54
and as RM you're supposed to send other metronome mails at your rythm.
57
Starting the release phase
58
--------------------------
60
When it's time to make the first beta release or release candidate:
62
#. Create a new milestone at <https://launchpad.net/bzr/2.0/+addmilestone>
63
for the beta release or release candidate.
65
#. Make a beta release or release candidate.
67
Preparing the tree for release
68
------------------------------
70
#. Make a local branch for preparing this release. (Only for the first
71
release in a series, otherwise you should already have a branch.) ::
73
bzr branch trunk prepare-1.14
75
#. Configure pqm-submit for this branch, with a section like this in
76
``~/.bazaar/locations.conf``::
78
[/home/mbp/bzr/prepare-1.14]
79
pqm_email = Canonical PQM <pqm@bazaar-vcs.org>
80
submit_branch = lp:bzr/2.0
81
public_branch = http://bazaar.example.com/prepare-2.0
82
submit_to = bazaar@lists.canonical.com
83
smtp_server = mail.example.com:25
85
Please see <http://doc.bazaar-vcs.org/developers/HACKING.html#an-overview-of-pqm>
86
for more details on PQM
88
#. In the release branch, update ``version_info`` in ``./bzrlib/__init__.py``.
89
Double check that ./bzr ``_script_version`` matches ``version_info``. Check
90
the output of ``bzr --version``.
92
For beta releases use::
94
version_info = (2, 1, 0, 'beta', 1)
97
For release candidates use::
99
version_info = (2, 0, 1, 'candidate', 1)
102
#. Add the date and release number to ``./NEWS``
104
#. To check that all bugs mentioned in ``./NEWS`` are actually marked as
105
closed in Launchpad, you can run ``tools/check-newsbugs.py``::
107
./tools/check-newsbugs.py NEWS
109
(But note there can be some false positives, and this script may be
110
flaky <https://bugs.edge.launchpad.net/bzr/+bug/354985>. Don't let
111
this slow you down too much.)
113
#. Summarize into one or two paragraphs what's new in this release.
115
#. Commit these changes to the release branch, using a command like::
117
bzr commit -m "Release 1.14."
119
The diff before you commit will be something like::
121
=== modified file 'NEWS'
122
--- NEWS 2008-09-17 23:09:18 +0000
123
+++ NEWS 2008-09-23 16:14:54 +0000
131
+This release includes many bug fixes and a few performance and feature
132
+improvements. ``bzr rm`` will now scan for missing files and remove them,
133
+like how ``bzr add`` scans for unknown files and adds them. A bit more
134
+polish has been applied to the stacking code. The b-tree indexing code has
135
+been brought in, with an eye on using it in a future repository format.
136
+There are only minor installer changes since bzr-1.7rc2.
138
bzr 1.7rc2 2008-09-17
139
---------------------
142
=== modified file 'bzrlib/__init__.py'
143
--- bzrlib/__init__.py 2008-09-16 21:39:28 +0000
144
+++ bzrlib/__init__.py 2008-09-23 16:14:54 +0000
146
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
147
# releaselevel of 'dev' for unreleased under-development code.
149
-version_info = (1, 7, 0, 'candidate', 2)
150
+version_info = (1, 7, 0, 'final', 0)
153
# API compatibility version: bzrlib is currently API compatible with 1.7.
155
#. Tag the new release::
159
#. Push those changes to a bzr reposistory that is public and accessible on
160
the Internet. PQM will pull from this repository when it attempts to merge
161
your changes. Then submit those changes to PQM for merge into the
162
appropriate release branch::
165
bzr pqm-submit -m "(mbp) prepare 1.14"
167
#. When PQM succeeds, pull down the master release branch.
170
Making the source tarball
171
-------------------------
173
#. Change into the source directory and run ::
177
This also makes a zip file, which is easier to access on Microsoft
180
#. Now we'll try expanding this tarball and running the test suite
181
to check for packaging problems::
183
make check-dist-tarball
185
You may encounter failures while running the test suite caused
186
by your locally installed plugins. Use your own judgment to
187
decide if you can release with these failures. When in doubt,
188
disable the faulty plugins one by one until you get no more
192
Publishing the release
193
----------------------
195
Now you have the beta or releasable product. The next step is making it
196
available to the world.
200
#. Within that release, upload the source tarball and zipfile and the GPG
201
signature. Or, if you prefer, use the
202
``tools/packaging/lp-upload-release`` script to do this.
204
#. Link from http://bazaar-vcs.org/SourceDownloads to the tarball and
207
#. Announce on the `Bazaar website <http://bazaar-vcs.org/>`_.
208
This page is edited via the lp:bzr-website branch. (Changes
209
pushed to this branch are refreshed by a cron job on escudero.)
211
#. Announce on the `Bazaar wiki <http://bazaar-vcs.org/Welcome>`_.
213
#. Check that the documentation for this release is available in
214
<http://doc.bazaar-vcs.org>. It should be automatically build when the
215
branch is created, by a cron script ``update-bzr-docs`` on
216
``escudero``. As of today (2009-08-27) ``igc`` manually updates the
217
pretty version of it.
220
Announcing the release
221
----------------------
223
Now that the release is publicly available, tell people about it.
225
#. Make an announcement mail.
227
For release candidates or beta releases, this is sent to the ``bazaar``
228
list only to inform plugin authors and package or installer managers.
230
Once the installers are available, the mail can be sent to the
231
``bazaar-announce`` list too.
233
For final releases, it should also be cc'd to ``info-gnu@gnu.org``,
234
``python-announce-list@python.org``, ``bug-directory@gnu.org``.
236
In all cases, it is good to set ``Reply-To: bazaar@lists.canonical.com``,
237
so that people who reply to the announcement don't spam other lists.
239
The announce mail will look something like this::
241
Subject: bzr x.yy released!
243
<<Summary paragraph from news>>
245
The Bazaar team is happy to announce availability of a new
246
release of the bzr adaptive version control system.
247
Bazaar is part of the GNU system <http://gnu.org/>.
249
Thanks to everyone who contributed patches, suggestions, and
252
Bazaar is now available for download from
253
http://bazaar-vcs.org/Download as a source tarball; packages
254
for various systems will be available soon.
256
<<NEWS section from this release back to the last major release>>
258
Feel free to tweak this to your taste.
260
#. Make an announcement through <https://launchpad.net/bzr/+announce>
262
#. Update the IRC channel topic. Use the ``/topic`` command to do this,
263
ensuring the new topic text keeps the project name, web site link, etc.
265
#. Announce on http://freshmeat.net/projects/bzr/
267
This should be done for beta releases, release candidates and final
268
releases. If you do not have a Freshmeat account yet, ask one of the
271
#. Update `<http://en.wikipedia.org/wiki/Bazaar_(software)>`_ -- this should
272
be done for final releases but not for beta releases or Release Candidates.
274
#. Update the python package index: <http://pypi.python.org/pypi/bzr> - best
277
python setup.py register
279
Remember to check the results afterwards.
281
To be able to register the release you must create an account on
282
<http://pypi.python.org/pypi> and have one of the existing owners of
283
the project add you to the group.
286
Merging the released code back to trunk
287
---------------------------------------
289
Merge the release branch back into the trunk. Check that changes in NEWS
290
were merged into the right sections. If it's not already done, advance
291
the version number in ``bzr`` and ``bzrlib/__init__.py``. Submit this
292
back into pqm for bzr.dev.
294
You should also merge (not pull) the release branch into
295
``lp:~bzr/bzr/current``, so that branch contains the current released code
302
* `Packaging into the bzr PPA <ppa.html>`_ to make and publish Ubuntu
304
* `Bazaar Developer Document Catalog <index.html>`_
305
* `Development cycles <cycle.html>`_: things that happen during the cycle
306
before the actual release.
309
vim: filetype=rst textwidth=74 ai shiftwidth=4