/** @page releases Release Processes This page provides an introduction to the OpenOCD Release Processes: - @ref releasewhy - Explain the motivations for producing releases on a regular basis. - @ref releasewho - Describes the responsibilities and authority required to produce official OpenOCD releases. - @ref releasewhen - Provides guidelines for scheduling activities for each release cycle. - @ref releasehow - Outlines all of the steps for the processes used to produce and release the package source archives. - @ref releasescript - Introduces the automated @c release.sh script. @section releasewhy Why Produce Releases? The OpenOCD maintainers produce releases periodically for many reasons. This section provides the key reasons for making releases on a regular basis and why a set of release processes should be used to produce them. At any time, source archives can be produced by running make dist in the OpenOCD project tree. With the 0.2.0 release, this command will package the tree into several popular archive formats: openocd-\.{tar.gz,tar.bz2,zip}. If produced properly, these files are suitable for release to the public. When released for users, these archives present several important advantages when contrasted to using the git repository: -# They allow others to package and distribute the code. -# They build easier for developers, because they contain a working configure script that was produced by the Release Manager. -# They prevent users from trying a random work-in-process revision. -# They free developers from answering questions about mainline breakage. Hopefully, this shows several good reasons to produce regular releases, but the release processes were developed with some additional design goals in mind. Specifically, the releases processes should have the following properties: -# Produce successive sets of archives cleanly and consistently. -# Implementable as a script that automates the critical steps. -# Prevent human operators from producing broken packages, when possible. -# Allow scheduling and automation of building and publishing milestones. The current release processes are documented in the following sections. They attempt to meet these design goals, but there may improvements remaining to be made toward automating the process. @section releaseversions Release Versions The OpenOCD version string is composed of three numeric components separated by two decimal points: @c x.y.z, where @c x is the @a major version number, @c y is the @a minor number, and @c z is the @a micro. For a bug-fix release, the micro version number will be non-zero (z > 0). For a minor release, the micro version number will be zero (z = 0). For a major releases, the minor version will @a also be zero (y = 0, z = 0). @subsection releaseversiontags Version Tags After these required numeric components, the version string may contain one or more version tags, such as '-rc1' or '-dev'. Mainline and all branches should have the tag '-dev' in their version number. This tag helps developers identify reports created from the git repository, and it can be detected and manipulated by the release script. Specifically, this tag will be removed and re-added during the release process; it should never be manipulated by developers in submitted patches. The 'rc' tags indicate a "release candidate" version of the package. This tag will also be manipulated by the automated release process. Additional tags may be used as necessary. @subsection releaseversionsdist Packager Versions Distributors of patched versions of OpenOCD are encouraged to extend the version string with a unique version tag when producing external releases, as this helps to identify your particular distribution series. For example, the following command will add a 'foo1' tag to the configure.in script of a local copy of the source tree: @code tools/release.sh version bump tag foo @endcode This command will modify the configure.in script in your working copy only. After running the @c bootstrap sequence, the tree can be patched and used to produce your own derived versions. The same command can be used each time the derived package is released, incrementing the tag's version to facilitate tracking the changes you have distributed. @subsection releaseversionhow Version Processes The release process includes version number manipulations to the tree being released, ensuring that all numbers are incremented at the right time and in the proper locations of the repository. The version numbers for any branch should increase monotonically to the next successive integer, except when reset to zero during major or minor releases. The community should decide when major and minor milestones will be released. @section releasewho Release Manager OpenOCD archive releases will be produced by an individual filling the role of Release Manager, hereafter abbreviated as RM. This individual determines the schedule and executes the release processes for the community. @subsection releasewhohow RM Authority Each release requires one individual to fulfill the RM role; however, graceful transitions of this authority may take place at any time. The current RM may transfer their authority to another contributor in a post to the OpenOCD development mailing list. Such delegation of authority must be approved by the individual that will receive it and the community of maintainers. Initial arrangements with the new RM should be made off-list, as not every contributor wants these responsibilities. @subsection releasewhowhat RM Responsibilities In addition to the actual process of producing the releases, the RM is responsible for keeping the community informed of all progress through the release cycle(s) being managed. The RM is responsible for managing the changes to the package version, though the release tools should manage the tasks of adding or removing any required development branch tags and incrementing the version. @section releasewhen Release Schedule The OpenOCD release process must be carried out on a periodic basis, so the project can realize the benefits presented in answer to the question, @ref releasewhy. Starting with the 0.2.0 release, the OpenOCD project should produce a new minor release every month or two, with a major release once a year. Bug fix releases could be provided more frequently. These release schedule goals may be adjusted in the future, after the project maintainers and distributors receive feedback and experience. More importantly, the statements made in this section do not create an obligation by any member of the OpenOCD community to produce new releases on regular schedule, now or in the future. @subsection releasewhenexample Sample Schedule The RM must pro-actively communicate with the community from the beginning of the development cycle through the delivery of the new release. This section presents guidelines for scheduling key points where the community must be informed of changing conditions. If T is the time of the next release, then the following schedule might describe some of the key milestones of the new release cycle: - T minus one month: start of new development cycle - T minus two weeks: announce pending mainline closure to new work - T minus one week: close mainline to new work, begin testing phase - T minus two days: call for final bug fixes - T minus one day: produce -rc packages and distribute to testers - T minus one hour: produce final packages and post on-line - T minus zero: Announce the release to our mailing list and the world. Some additional supplemental communication will be desirable. The above list omits the step-by-step instructions to daily release management. Individuals performing release management need to have the ability to interact proactively with the community as a whole, anticipating when such interaction will be required and giving ample notification. The next section explains why the OpenOCD project allows significant flexibility in the part of the development that precedes the release process. @note The OpenOCD project does not presently produce -rc packages. As such, the step suggested in the list above should be read as trying to stimulate others to test the project build and packaging on as many platforms as possible. This proposition will be palatable once release management tools have been committed to the tree. @subsection releasewhenflex Schedule Flexibility The Release Manager should attempt to follow the guidelines in this document, but the process of scheduling each release milestone should be community driven at the start. By the end, missing features that were scheduled for a release must be dropped by the Release Manager, rather than allowing the release cycle to be delayed while waiting for them. Despite any assurances this schedule may appear to give, the Release Manager cannot schedule the work that will be done on the project, when it will be submitted, reviewed, and deemed suitable to be committed. In this way, the RM cannot act as a priest in a cathedral; OpenOCD uses the bazaar development model. The release schedule must adapt continuously in response to changes in the rate of churn. In particular, the suggested period of "one or two month" reflects some expectation of a fairly high rate of development. Fewer releases may be required if developers contribute less patches, and more releases may be desirable if the project continues to grow and experience high rates of community contribution. During each cycle, the RM should be tracking the situation and gathering feedback from the community. @section releasehow Release Process: Step-by-Step The release process may require a few iterations to work out any bugs. Even with the release script, some steps require clear user intervention -- and not only by the Release Manager. The following steps should be followed to produce each release: -# Produce final manual patches to mainline (or release branch): -# Finalize @c NEWS file to describe the changes in the release - This file is Used to automatically post "blurbs" about the project. - This material should be produced during the development cycle. - Add a new item for each @c NEWS-worthy contribution, when committed. -# Bump library version if our API changed (not yet required) -# Produce and tag the final revision in the git repository: - Update and commit the final package version in @c configure.in : -# Remove @c -dev tag. -# Remove @c -rc tag, if producing the final release from an -rc series. - Tags must be named consistently: @verbatim @endverbatim - Tag the final commit with a consistent GIT tag name and message: @verbatim PACKAGE_VERSION="x.y.z" PACKAGE_TAG="v${PACKAGE_VERSION}" git tag -m "The openocd-${PACKAGE_VERSION} release." "${PACKAGE_TAG}" @endverbatim -# Prepare to resume normal development on the branch: - Restore @c -dev and -@c -rc0 version tags. - To start a new major (or minor) release cycle on the @c master branch: - Bump major (or minor) package version, zeroing sub-components. - Add -rc0 version tag: - This insures casual releases from GIT always increase monotonically. - For example, a major increment after releasing 1.2.3 starts 2.0.0-rc0-dev. - Archive @c NEWS file as "doc/news/NEWS-${PACKAGE_VERSION}". - Create a new @c NEWS file for the next release - To start a bug-fix release on a non-master branch: -# Bump bug-fix version. - To start another release candidate on a major or minor branch: -# Bump rc tag. -# Produce the package source archives: -# Start with a clean working copy, used for producing releases only. -# Checkout the appropriate tag: git checkout $(git tag ) "${PACKAGE_VERSION}" -# Produce a ChangeLog for the release (using @c git2cl). -# @c bootstrap, @c configure, and @c make the package. -# Run make distcheck to produce the distribution archives. -# Run make maintainer-clean verify the repository is empty. -# Create signature files using @c md5sum, @c sha1sum, etc. -# Publish documentation for the release: - Allow users to access the documentation for each of our releases. - Place static copies of the following files on the project website: - @c NEWS: to provide a blurb for each release - @c ChangeLog: to show exactly what has been changed - User Guide, Developer Manual: to allow easy on-line viewing -# Upload packages and post announcements of their availability: -# Release packages into files section of project sites: - SF.net: -# Create a new folder named "${PACKAGE_VERSION}" -# Select new folder as the target for uploads. -# Upload files via Web interface into new -# Set platform types for each archive: - .tar.bz2: Linux, Mac - .tar.gz: BSD, Solaris, Others - .zip: Windows - Berlios: -# Create the new release for the new version. -# Provide @c NEWS and ChangeLog files, as requested. -# Upload files via FTP to ftp://ftp.berlios.de/incoming/ -# Edit descriptions for each file. -# Click button to send E-mail Release Notice. -# Post announcement e-mail to the openocd-development list. -# Announce updates on freshmeat.net and other trackers. -# Submit big updates to news feeds (e.g. Digg, Reddit, etc.). @section releasescript The Release Script Many of the processes described in the last section are no longer entrusted to humans. Instead, the @c release.sh script provides automation of the mechanical steps. Presently, the @c release.sh script automates steps 2 through 4, allowing the Release Manager from perform these tasks in easy steps. The following task still need to be automated: - Step 5: produce documentation for website using released source archive. - Step 6(a): package archive upload process. - Step 6(b): package announcement e-mail process. - Step 6(c): post files and announce them using releaseforge. @subsection releasescriptcmds Release Script Commands The release script can be used for two tasks: - Creating releases and starting a new release cycle: @code git checkout master tools/release.sh --type=minor --final --start-rc release @endcode - Creating a development branch from a tagged release: @code git checkout 'v0.2.0' tools/release.sh --type=micro branch @endcode Both of these variations make automatic commits and tags in your repository, so you should be sure to run it on a cloned copy before proceding with a live release. @subsection releasescriptopts Release Script Options The @c release.sh script recognizes some command-line options that affect its behavior: - The @c --start-rc indicates that the new development release cycle should start with @c -rc0. Without this, the @c -rc tag will be omitted, leading to non-monotonic versioning of the in-tree version numbers. - The @c --final indicates that the release should drop the @c -rc tag, to going from @c x.y.z-rcN-dev to x.y.z. @subsection releasescriptenv Release Script Environment The @c release.sh script recognizes some environment variables which affect its behavior: - @c CONFIG_OPTS : Passed as options to the configure script. - @c MAKE_OPTS : Passed as options to the 'make' processes. @section releasetutorial Release Tutorials This section should contain a brief tutorial for using the Release Script to perform release tasks, but the new script needs to be used for 0.3.0. @section releasetodo Release Script Shortcomings Improved automated packaging and distribution of OpenOCD requires more patching of the configure script. The final release script should be able to manage most steps of the processes. The steps requiring user input could be guided by an "assistant" that walks the Release Manager through the process from beginning to end, performing basic sanity checks on their various inputs (e.g. the @c NEWS blurb). */ /** @file This file contains the @ref releases page. */