/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: John Arbash Meinel
  • Date: 2009-10-14 15:53:34 UTC
  • mto: This revision was merged to the branch mainline in revision 4746.
  • Revision ID: john@arbash-meinel.com-20091014155334-dxdm0ns610scz5c9
Add a test case for the bug w/ NotImplemented.

Basically, bool(NotImplemented) == True, which means that you have to
check for 'result == Py_NotImplemented' before you check PyObject_IsTrue().
Going further, though, I simplified the _is_equal a lot by switching to
using object definitions (rather than PyObject *).
This now handles exceptions and refcounts properly, and the code is cleaner
to boot. (Exceptions will now include these lines in the traceback, etc.)

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
.. contents::
 
12
 
 
13
 
 
14
Preconditions
 
15
-------------
 
16
 
 
17
#. Download the pqm plugin and install it into your ``~/.bazaar/plugins``::
 
18
 
 
19
     bzr branch lp:bzr-pqm ~/.bazaar/plugins/pqm
 
20
 
 
21
 
 
22
Starting a cycle
 
23
----------------
 
24
 
 
25
To start a new release cycle:
 
26
 
 
27
#. Create a new series at <https://launchpad.net/bzr/+addseries>. There is one
 
28
   series for every *x.y* release.
 
29
 
 
30
#. Go to the series web page at <https://launchpad.net/bzr/x.y>
 
31
 
 
32
#. Create a new release at
 
33
   <https://launchpad.net/bzr/x.y/+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.
 
36
 
 
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.
 
42
 
 
43
#. Add milestones at <https://edge.launchpad.net/bzr/x.y/+addmilestone> to
 
44
   that series for the beta release, release candidate and the final release,
 
45
   and their expected dates.
 
46
 
 
47
#. Update the version number in the ``bzr`` script, and the
 
48
   ``bzrlib/__init__.py`` file.
 
49
 
 
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.
 
55
 
 
56
 
 
57
Starting the release phase
 
58
--------------------------
 
59
 
 
60
When it's time to make the first beta release or release candidate:
 
61
 
 
62
#. Make a beta release or release candidate. The milestone for this
 
63
   candidate will already exist (see Starting a cycle above).
 
64
 
 
65
Preparing the tree for release
 
66
------------------------------
 
67
 
 
68
#. Make a local branch for preparing this release.  (Only for the first 
 
69
   release in a series, otherwise you should already have a branch.) ::
 
70
 
 
71
     bzr branch trunk prepare-1.14
 
72
 
 
73
#. Configure pqm-submit for this branch, with a section like this (where
 
74
   x.y is the version to release).
 
75
   ``~/.bazaar/locations.conf``::
 
76
 
 
77
        [/home/mbp/bzr/prepare-x.y]
 
78
        pqm_email = Canonical PQM <pqm@bazaar-vcs.org>
 
79
        submit_branch = http://bazaar.launchpad.net/~bzr-pqm/bzr/x.y
 
80
        public_branch = http://bazaar.example.com/prepare-x.y
 
81
        submit_to = bazaar@lists.canonical.com
 
82
        smtp_server = mail.example.com:25
 
83
 
 
84
    Please see <http://doc.bazaar-vcs.org/developers/HACKING.html#an-overview-of-pqm>
 
85
    for more details on PQM
 
86
 
 
87
#. In the release branch, update  ``version_info`` in ``./bzrlib/__init__.py``.
 
88
   Double check that ./bzr ``_script_version`` matches ``version_info``. Check
 
89
   the output of ``bzr --version``.
 
90
 
 
91
   For beta releases use::
 
92
 
 
93
       version_info = (2, 1, 0, 'beta', 1)
 
94
 
 
95
 
 
96
   For release candidates use::
 
97
 
 
98
       version_info = (2, 0, 1, 'candidate', 1)
 
99
 
 
100
 
 
101
#. Add the date and release number to ``./NEWS``
 
102
 
 
103
#. To check that all bugs mentioned in ``./NEWS`` are actually marked as
 
104
   closed in Launchpad, you can run ``tools/check-newsbugs.py``::
 
105
 
 
106
     ./tools/check-newsbugs.py NEWS
 
107
 
 
108
   (But note there can be some false positives, and this script may be
 
109
   flaky <https://bugs.edge.launchpad.net/bzr/+bug/354985>.  Don't let
 
110
   this slow you down too much.)
 
111
 
 
112
#. Summarize into one or two paragraphs what's new in this release.
 
113
 
 
114
#. Commit these changes to the release branch, using a command like::
 
115
    
 
116
     bzr commit -m "Release 1.14." 
 
117
   
 
118
   The diff before you commit will be something like::
 
119
 
 
120
     === modified file 'NEWS'
 
121
     --- NEWS        2008-09-17 23:09:18 +0000
 
122
     +++ NEWS        2008-09-23 16:14:54 +0000
 
123
     @@ -4,6 +4,23 @@
 
124
     
 
125
      .. contents::
 
126
     
 
127
     +bzr 1.7 2008-09-23
 
128
     +------------------
 
129
     +
 
130
     +This release includes many bug fixes and a few performance and feature
 
131
     +improvements.  ``bzr rm`` will now scan for missing files and remove them,
 
132
     +like how ``bzr add`` scans for unknown files and adds them. A bit more
 
133
     +polish has been applied to the stacking code. The b-tree indexing code has
 
134
     +been brought in, with an eye on using it in a future repository format.
 
135
     +There are only minor installer changes since bzr-1.7rc2.
 
136
     +
 
137
      bzr 1.7rc2 2008-09-17
 
138
      ---------------------
 
139
     
 
140
     
 
141
     === modified file 'bzrlib/__init__.py'
 
142
     --- bzrlib/__init__.py  2008-09-16 21:39:28 +0000
 
143
     +++ bzrlib/__init__.py  2008-09-23 16:14:54 +0000
 
144
     @@ -41,7 +41,7 @@
 
145
      # Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
 
146
      # releaselevel of 'dev' for unreleased under-development code.
 
147
     
 
148
     -version_info = (1, 7, 0, 'candidate', 2)
 
149
     +version_info = (1, 7, 0, 'final', 0)
 
150
     
 
151
     
 
152
      # API compatibility version: bzrlib is currently API compatible with 1.7.
 
153
      
 
154
#. Tag the new release::
 
155
 
 
156
     bzr tag bzr-1.14
 
157
 
 
158
#. Push those changes to a bzr reposistory that is public and accessible on
 
159
   the Internet. PQM will pull from this repository when it attempts to merge
 
160
   your changes. Then submit those changes to PQM for merge into the
 
161
   appropriate release branch::
 
162
 
 
163
     bzr push
 
164
     bzr pqm-submit -m "(mbp) prepare 1.14"
 
165
 
 
166
#. When PQM succeeds, pull down the master release branch.
 
167
 
 
168
 
 
169
Making the source tarball
 
170
-------------------------
 
171
 
 
172
#. Change into the source directory and run ::
 
173
  
 
174
     make dist
 
175
 
 
176
#. Now we'll try expanding this tarball and running the test suite
 
177
   to check for packaging problems::
 
178
 
 
179
     make check-dist-tarball
 
180
 
 
181
   You may encounter failures while running the test suite caused
 
182
   by your locally installed plugins. Use your own judgment to
 
183
   decide if you can release with these failures. When in doubt,
 
184
   disable the faulty plugins one by one until you get no more
 
185
   failures.
 
186
 
 
187
 
 
188
Publishing the source tarball
 
189
-----------------------------
 
190
 
 
191
#. Go to the relevant milestone page in Launchpad.
 
192
 
 
193
#. Within that release, upload the source tarball and the GPG
 
194
   signature.  Or, if you prefer, use the
 
195
   ``tools/packaging/lp-upload-release`` script to do this.
 
196
 
 
197
 
 
198
Announcing the source freeze
 
199
----------------------------
 
200
 
 
201
#. Post to the ``bazaar`` list, saying that the source has been frozen.
 
202
   This is the cue for platform maintainers and plugin authors to update
 
203
   their code.  This is done before the general public announcement of the
 
204
   release.
 
205
 
 
206
 
 
207
Publishing the release
 
208
----------------------
 
209
 
 
210
There is normally a delay of a few days after the source freeze to allow
 
211
for binaries to be built on various platforms.  Once they have been built,
 
212
we have a releasable product.  The next step is to make it generally
 
213
available to the world.
 
214
 
 
215
go to the release
 
216
 
 
217
#. Within that release, upload the source tarball and zipfile and the GPG
 
218
   signature.  Or, if you prefer, use the
 
219
   ``tools/packaging/lp-upload-release`` script to do this.
 
220
 
 
221
#. Link from http://bazaar-vcs.org/SourceDownloads to the tarball and
 
222
   signature.
 
223
 
 
224
#. Announce on the `Bazaar website <http://bazaar-vcs.org/>`_.
 
225
   This page is edited via the lp:bzr-website branch. (Changes
 
226
   pushed to this branch are refreshed by a cron job on escudero.)
 
227
 
 
228
#. Announce on the `Bazaar wiki <http://bazaar-vcs.org/Welcome>`_.
 
229
 
 
230
#. Check that the documentation for this release is available in
 
231
   <http://doc.bazaar-vcs.org>.  It should be automatically build when the
 
232
   branch is created, by a cron script ``update-bzr-docs`` on
 
233
   ``escudero``. As of today (2009-08-27) ``igc`` manually updates the
 
234
   pretty version of it.
 
235
 
 
236
 
 
237
Announcing the release
 
238
----------------------
 
239
 
 
240
Now that the release is publicly available, tell people about it.
 
241
 
 
242
#. Make an announcement mail.
 
243
 
 
244
   For release candidates or beta releases, this is sent to the ``bazaar``
 
245
   list only to inform plugin authors and package or installer managers.
 
246
 
 
247
   Once the installers are available, the mail can be sent to the
 
248
   ``bazaar-announce`` list too.
 
249
 
 
250
   For final releases, it should also be cc'd to ``info-gnu@gnu.org``,
 
251
   ``python-announce-list@python.org``, ``bug-directory@gnu.org``.  
 
252
 
 
253
   In all cases, it is good to set ``Reply-To: bazaar@lists.canonical.com``,
 
254
   so that people who reply to the announcement don't spam other lists.
 
255
 
 
256
   The announce mail will look something like this::
 
257
   
 
258
      Subject: bzr x.yy released!
 
259
      
 
260
      <<Summary paragraph from news>>
 
261
     
 
262
      The Bazaar team is happy to announce availability of a new 
 
263
      release of the bzr adaptive version control system.
 
264
      Bazaar is part of the GNU system <http://gnu.org/>.
 
265
     
 
266
      Thanks to everyone who contributed patches, suggestions, and
 
267
      feedback.
 
268
      
 
269
      Bazaar is now available for download from 
 
270
      http://bazaar-vcs.org/Download as a source tarball; packages 
 
271
      for various systems will be available soon.
 
272
      
 
273
      <<NEWS section from this release back to the last major release>>
 
274
 
 
275
   Feel free to tweak this to your taste.
 
276
 
 
277
#. Make an announcement through <https://launchpad.net/bzr/+announce>
 
278
 
 
279
#. Update the IRC channel topic. Use the ``/topic`` command to do this,
 
280
   ensuring the new topic text keeps the project name, web site link, etc.
 
281
 
 
282
#. Announce on http://freshmeat.net/projects/bzr/
 
283
   
 
284
   This should be done for beta releases, release candidates and final
 
285
   releases. If you do not have a Freshmeat account yet, ask one of the
 
286
   existing admins.
 
287
 
 
288
#. Update `<http://en.wikipedia.org/wiki/Bazaar_(software)>`_ -- this should
 
289
   be done for final releases but not for beta releases or Release Candidates.
 
290
 
 
291
#. Update the python package index: <http://pypi.python.org/pypi/bzr> - best
 
292
   done by running ::
 
293
 
 
294
       python setup.py register
 
295
 
 
296
   Remember to check the results afterwards.
 
297
 
 
298
   To be able to register the release you must create an account on
 
299
   <http://pypi.python.org/pypi> and have one of the existing owners of
 
300
   the project add you to the group.
 
301
 
 
302
 
 
303
Merging the released code back to trunk
 
304
---------------------------------------
 
305
 
 
306
Merge the release branch back into the trunk.  Check that changes in NEWS
 
307
were merged into the right sections.  If it's not already done, advance
 
308
the version number in ``bzr`` and ``bzrlib/__init__.py``.  Submit this
 
309
back into pqm for bzr.dev.
 
310
 
 
311
You should also merge (not pull) the release branch into
 
312
``lp:~bzr/bzr/current``, so that branch contains the current released code
 
313
at any time.
 
314
 
 
315
 
 
316
See also
 
317
--------
 
318
 
 
319
* `Packaging into the bzr PPA <ppa.html>`_ to make and publish Ubuntu
 
320
  packages.
 
321
* `Bazaar Developer Document Catalog <index.html>`_
 
322
* `Development cycles <cycle.html>`_: things that happen during the cycle
 
323
  before the actual release.
 
324
 
 
325
..
 
326
   vim: filetype=rst textwidth=74 ai shiftwidth=4