Release docs: fix notes
[openocd.git] / doc / manual / release.txt
1 /** @page releases Release Processes
2
3 This page provides an introduction to the OpenOCD Release Processes:
4
5 - @ref releasewhy - Explain the motivations for producing
6 releases on a regular basis.
7 - @ref releasewho - Describes the responsibilities and
8 authority required to produce official OpenOCD releases.
9 - @ref releasewhen - Provides guidelines for scheduling
10 activities for each release cycle.
11 - @ref releasehow - Outlines all of the steps for the
12 processes used to produce and release the package source archives.
13 - @ref releasescriptcmds - Introduces the automated @c release.sh script.
14
15 @section releasewhy Why Produce Releases?
16
17 The OpenOCD maintainers produce <i>releases</i> periodically for many
18 reasons. This section provides the key reasons for making releases on a
19 regular basis and why a set of <i>release processes</i> should be used
20 to produce them.
21
22 At any time, <i>source archives</i> can be produced by running
23 <code>make dist</code> in the OpenOCD project tree. With the 0.2.0
24 release, this command will package the tree into several popular archive
25 formats: <code>openocd-\<version\>.{tar.gz,tar.bz2,zip}</code>. If
26 produced properly, these files are suitable for release to the public.
27
28 When properly versioned and released for users, these archives present
29 several important advantages compared to using the source repository
30 (including snapshots downloaded from that repository using gitweb):
31
32 -# They allow others to package and distribute the code using
33 consistent version labels. Users won't normally need to care
34 whose package they use, just the version of OpenOCD.
35 -# They contain a working configure script and makefiles, which
36 were produced as part of creating the archive.
37 -# Because they have been formally released by the project, users
38 don't need to try a random work-in-process revision. Releasing
39 involves spending some time specifically on quality improvments,
40 including bugfixing source code and documentation.
41 -# They provide developers with the flexibility needed to address
42 larger issues, which sometimes involves temporary breakage.
43
44 Hopefully, this shows several good reasons to produce regular releases,
45 but the release processes were developed with some additional design
46 goals in mind. Specifically, the releases processes should have the
47 following properties:
48
49 -# Produce successive sets of archives cleanly and consistently.
50 -# Implementable as a script that automates the critical steps.
51 -# Prevent human operators from producing broken packages, when possible.
52 -# Allow scheduling and automation of building and publishing milestones.
53
54 The current release processes are documented in the following sections.
55 They attempt to meet these design goals, but improvements may still
56 need to be made.
57
58 @subsection version_labels Version Labels
59
60 Users can display the OpenOCD version string in at least two
61 ways. The command line <code>openocd -v</code> invocation
62 displays it; as does the Tcl <code>version</code> command.
63
64 Labels for released versions look like <em>0.3.0</em>, or
65 <em>0.3.0-rc1</em> for a preliminary release.
66 Non-released (developer) versions look like <em>0.3.0-dev</em>,
67 or <em>0.3.0-rc1-dev</em>.
68 In all cases, additional tags may be appended to those base
69 release version labels.
70
71 The <code>tools/release/version.sh</code> script is used to
72 manipulate version IDs found in the source tree.
73
74 @subsubsection releaseversions Release Versions and Tags
75
76 The OpenOCD version string is composed of three numeric components
77 separated by two decimal points: @c x.y.z, where @c x is the @a major
78 version number, @c y is the @a minor number, and @c z is the @a micro.
79 For any <em>bug-fix</em> release, the micro version number will be non-zero
80 (<code>z > 0</code>). For a <i>minor release</i>, the micro version
81 number will be zero (<code>z = 0</code>). For a <i>major releases</i>,
82 the minor version will @a also be zero (<code>y = 0, z = 0</code>).
83
84 After these required numeric components, release version strings
85 may contain tags such as as <em>-rc1</em> or <em>-rc2</em>.
86 These 'rc' tags indicate "release candidate" versions of the package.
87 Like the major/minor/micro numbers, these tags will be manipulated
88 by the automated release process.
89
90 The release process includes version number manipulations to the tree
91 being released, ensuring that all numbers are incremented (or rolled
92 over) at the right time and in the proper locations of the repository.
93 One of those manipulations creates a repository tag matching that
94 release's version label.
95
96 @subsubsection releaseversionsdist Packager Versions
97
98 Distributors of patched versions of OpenOCD are encouraged to extend the
99 version string with a unique version tag when producing external
100 releases, as this helps to identify your particular distribution series.
101 Knowing that a release has such patches can be essential to tracking
102 down and fixing bugs.
103
104 Packager version tags should always be suffixes to the version
105 code from the OpenOCD project, signifying modifications to the
106 original code base. Each packager release should have a unique
107 version.
108
109 For example, the following command will add a 'foo' tag to the
110 configure.in script of a local copy of the source tree, giving
111 a version label like <em>0.3.0-foo</em>:
112
113 @code
114 tools/release/version.sh version tag add foo
115 @endcode
116
117 This command will modify the configure.in script in your working copy
118 only. After running the @c bootstrap sequence, the tree can be patched
119 and used to produce your own derived versions. You might check that
120 change into a private branch of your git tree, along with the other
121 patches you are providing.
122
123 You can also "bump" those tags (so "foo1" becomes "foo2" etc)
124 each time a derived package is released, incrementing the tag's
125 version to facilitate tracking the changes you have distributed.
126
127 @code
128 tools/release/version.sh version bump tag foo
129 @endcode
130
131 Of course, any patches in your branches must be provided to
132 your customers, and be in conformance with the GPL. In most
133 cases you should also work to merge your improvements to the
134 mainline tree.
135
136 @subsubsection version_tags Development Versions and Tags
137
138 Everything except formal releases should have the tag <em>-dev</em>
139 in their version number. This helps developers identify reports
140 created from non-release versions, and it can be detected and
141 manipulated by the release script. Specifically, this tag will be
142 removed and re-added during the release process; it should never be
143 manipulated by developers in submitted patches.
144
145 Versions built from developer trees may have additional tags.
146 Trees built from git snapshots have <em>snapshot</em> tags.
147 When built from a "live" git tree, tags specify
148 specific git revisions:
149
150 0.3.0-rc1-dev-00015-gf37c9b8-dirty
151
152 indicates a development tree based on git revison f37c9b8
153 (a truncated version of a SHA1 hash) with some non-git
154 patches applied (the <em>dirty</em> tag). This information
155 can be useful when tracking down bugs.
156 (Note that at this writing, the tags do not directly
157 correspond to <code>git describe</code> output. The
158 hash ID can be used with <code>git show</code>, but
159 the relevant repository tag isn't <em>0.3.0-rc1-dev</em>;
160 this might change in the future.)
161
162 @section releasewho Release Manager
163
164 OpenOCD archive releases will be produced by an individual filling the
165 role of <i>Release Manager</i>, hereafter abbreviated as <i>RM</i>. This
166 individual determines the schedule and executes the release processes
167 for the community.
168
169 @subsection releasewhohow RM Authority
170
171 Each release requires one individual to fulfill the RM role; however,
172 graceful transitions of this authority may take place at any time. The
173 current RM may transfer their authority to another contributor in a post
174 to the OpenOCD development mailing list. Such delegation of authority
175 must be approved by the individual that will receive it and the
176 community of maintainers. Initial arrangements with the new RM should
177 be made off-list, as not every contributor wants these responsibilities.
178
179 @subsection releasewhowhat RM Responsibilities
180
181 In addition to the actual process of producing the releases, the RM is
182 responsible for keeping the community informed of all progress through
183 the release cycle(s) being managed. The RM is responsible for managing
184 the changes to the package version, though the release tools should
185 manage the tasks of adding or removing any required development branch
186 tags and incrementing the version.
187
188 These responsibilities matter most towards the end of the release
189 cycle, when the RM creates the first RC and all contributors enter
190 a quality-improvement mode. The RM works with other contributors
191 to make sure everyone knows what kinds of fixes should merge, the
192 status of major issues, and the release timetable.
193
194 In particular, the RM has the final decision on whether a given
195 bug should block the release.
196
197 @section releasewhen Release Schedule
198
199 The OpenOCD release process must be carried out on a periodic basis, so
200 the project can realize the benefits presented in answer to the question,
201 @ref releasewhy.
202
203 Starting with the 0.2.0 release, the OpenOCD project expects to produce
204 new releases every few months.
205 Bug fix releases could be provided more frequently. These release
206 schedule goals may be adjusted in the future, after the project
207 maintainers and distributors receive feedback and experience.
208
209 More importantly, the statements made in this section do not create an
210 obligation by any member of the OpenOCD community to produce new
211 releases on regular schedule, now or in the future.
212
213 @subsection releasewhenexample Sample Schedule
214
215 The RM must pro-actively communicate with the community from the
216 beginning of the development cycle through the delivery of the new
217 release. This section presents guidelines for scheduling key points
218 where the community must be informed of changing conditions.
219
220 If Tn is the time of release n, then the following schedule
221 might describe some key T0-to-T1 release cycle milestones.
222
223 - T0 ... End of T0 release cycle. T1 cycle starts, with merge
224 window opening. Developers begin to merge queued work.
225 - <em>... several weeks of merge window ...</em>
226 - RC1 ... Close mainline to new work. Produce RC1
227 release, begin testing phase; developers are in "bugfix mode",
228 all other work is queued; send out planned endgame schedule.
229 - RC2 ... Produce RC2 and send schedule update to
230 mailing list, listing priorities for remaining fixes
231 - <em>... more RC milestones, until ready ...</em>
232 - T1: End of T1 release cycle. T2 cycle starts, with merge
233 window opening. Developers begin to merge queued work.
234
235 Note that until it happens, any date for T1 is just a goal.
236 Critical bugs prevent releases from happening. We are just
237 beginning to use this window-plus-RCs process, so the lengths
238 of the merge windows versus the RC phase is subject to change.
239 Most projects have RC phases of a month or more.
240
241 Some additional supplemental communication will be desirable. The above
242 list omits the step-by-step instructions to daily release management.
243 Individuals performing release management need to have the ability to
244 interact proactively with the community as a whole, anticipating when
245 such interaction will be required and giving ample notification.
246
247 The next section explains why the OpenOCD project allows significant
248 flexibility in the part of the development that precedes the release
249 process.
250
251 @subsection releasewhenflex Schedule Flexibility
252
253 The Release Manager should attempt to follow the guidelines in this
254 document, but the process of scheduling each release milestone should be
255 community driven at the start. Features that don't complete before
256 the merge window closes can be held (perhaps in some branch) until
257 the next merge window opens, rather than delaying the release cycle.
258
259 The Release
260 Manager cannot schedule the work that will be done on the project,
261 when it will be submitted, reviewed, and deemed suitable to be committed.
262 That is, the RM cannot act as a priest in a cathedral; OpenOCD uses
263 the bazaar development model. The release schedule must adapt
264 continuously in response to changes in the rate of work.
265 Fewer releases may be
266 required if developers contribute less patches, and more releases may be
267 desirable if the project continues to grow and experience high rates of
268 community contribution. During each cycle, the RM should be tracking
269 the situation and gathering feedback from the community.
270
271 @section releasehow Release Process: Step-by-Step
272
273 The release process is not final; it may need more iterations
274 to work out bugs.
275 While there are release scripts, key steps require community
276 support; the Release Manager isn't the only participant.
277
278 The following steps should be followed to produce each release:
279
280 -# Produce final patches to mainline (or a release branch). Nobody
281 except the RM should be committing anything.
282 -# Finalize @c NEWS file to describe the changes in the release
283 - This file is used to automatically post "blurbs" about the project.
284 - This material should be produced during the development cycle.
285 - Add a new item for each @c NEWS-worthy contribution, when committed.
286 -# Bump library version if our API changed (not yet required)
287 -# Update and commit the final package version in @c configure.in:
288 <code>tools/release/version.sh</code> may help ensure the versions
289 are named consistently:
290 -# Remove @c -dev tag.
291 -# Update the @c -rc tag:
292 - If producing the final release from an -rc series, remove it
293 - If producing the first RC in a series, add rc1
294 - If producing the next RC in a series, bump the rc number
295 -# Commit that version change.
296 -# Create a git tag for the final commit, with a tag name matching
297 the version string in <code>configure.in</code> (including <em>-rcN</em>
298 where relevant):
299 @verbatim
300 PACKAGE_VERSION="x.y.z"
301 PACKAGE_TAG="v${PACKAGE_VERSION}"
302 git tag -m "The openocd-${PACKAGE_VERSION} release." "${PACKAGE_TAG}"
303 @endverbatim
304 -# Prepare to resume normal development on mainline (major or minor release)
305 - Update the version label
306 - Restore @c -dev version tag.
307 - For a new minor release cycle, increment the release's minor number
308 - For a new major release cycle, increment the release's major number
309 and zero its minor number
310 - Archive @c NEWS file as "<code>doc/news/NEWS-${PACKAGE_VERSION}</code>".
311 - Create a new @c NEWS file for the next release
312 - Commit those changes, and push the commit and the release tag
313 to mainline.
314 -# Produce the package source archives:
315 -# <em>Start with a new clone of the source tree</em>, with the
316 release's tag. This is used only for producing these packages.
317 -# Checkout the appropriate tag:
318 <code>git checkout "${PACKAGE_VERSION}"</code>
319 -# @c bootstrap, @c configure, and @c make the package.
320 -# Run <code>make distcheck</code> to produce the distribution archives.
321 -# Run <code>make maintainer-clean</code> verify the repository is empty.
322 -# Create signature files using @c md5sum, @c sha1sum, etc.
323 -# Publish documentation for the release:
324 - Allow users to access the documentation for each of our releases.
325 - Place static copies of the following files on the project website:
326 - @c NEWS: to provide a blurb for each release
327 - User's Guide, Developer Manual: to allow easy on-line viewing
328 -# Upload packages and post announcements of their availability:
329 -# Release packages into files section of project sites:
330 - SF.net:
331 -# Create a new folder named "${PACKAGE_VERSION}"
332 -# Select new folder as the target for uploads.
333 -# Upload files via Web interface into new
334 -# Set platform types for each archive:
335 - .tar.bz2: Linux, Mac
336 - .tar.gz: BSD, Solaris, Others
337 - .zip: Windows
338 - Berlios:
339 -# Create the new release for the new version.
340 -# Provide @c NEWS file, as requested.
341 -# Upload files via FTP to ftp://ftp.berlios.de/incoming/
342 -# Edit descriptions for each file.
343 -# Click button to send E-mail Release Notice.
344 -# Post announcement e-mail to the openocd-development list.
345 -# Announce updates on freshmeat.net and other trackers.
346 -# Submit big updates to news feeds (e.g. Digg, Reddit, etc.).
347
348 To start a bug-fix release branch:
349 -# Create a new branch, starting from a major or
350 minor release tag
351 -# Restore @c -dev version tag.
352 -# Bump micro version number in configure.in
353 -# Backport bugfix patches from mainline into that branch.
354 (Always be sure mainline has the fix first, so it's hard
355 to just lose a bugfix.)
356 -# Commit and push those patches.
357 -# When desired, release as above ... except note that the next
358 release of a bugfix branch is never a new major or minor release
359
360 @subsection releasescriptcmds Release Script Commands
361
362 The @c release.sh script automates some of the steps involved
363 in making releases, simplifying the Release Manager's work.
364
365 The release script can be used for two tasks:
366 - Creating releases and starting a new release cycle:
367 @code
368 git checkout master
369 tools/release.sh --type=minor --final --start-rc release
370 @endcode
371 - Creating a development branch from a tagged release:
372 @code
373 git checkout 'v0.2.0'
374 tools/release.sh --type=micro branch
375 @endcode
376
377 Both of these variations make automatic commits and tags in your
378 repository, so you should be sure to run it on a cloned copy before
379 proceding with a live release.
380
381 @subsection releasescriptopts Release Script Options
382
383 The @c release.sh script recognizes some command-line options that
384 affect its behavior:
385
386 - The @c --start-rc indicates that the new development release cycle
387 should start with @c -rc0. Without this, the @c -rc tag will be omitted,
388 leading to non-monotonic versioning of the in-tree version numbers.
389 - The @c --final indicates that the release should drop the @c -rc tag,
390 to going from @c x.y.z-rcN-dev to x.y.z.
391
392 @subsection releasescriptenv Release Script Environment
393
394 The @c release.sh script recognizes some environment variables which
395 affect its behavior:
396
397 - @c CONFIG_OPTS : Passed as options to the configure script.
398 - @c MAKE_OPTS : Passed as options to the 'make' processes.
399
400 @section releasetutorial Release Tutorials
401
402 This section should contain a brief tutorial for using the Release
403 Script to perform release tasks, but the new script needs to be
404 used for 0.3.0.
405
406 @section releasetodo Release Script Shortcomings
407
408 Improved automated packaging and distribution of OpenOCD requires more
409 patching of the configure script. The final release script should be
410 able to manage most steps of the processes. The steps requiring user
411 input could be guided by an "assistant" that walks the Release Manager
412 through the process from beginning to end, performing basic sanity
413 checks on their various inputs (e.g. the @c NEWS blurb).
414
415 */
416 /** @file
417 This file contains the @ref releases page.
418 */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)