You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

428 lines
18 KiB

  1. /** @page releases Release Processes
  2. This page provides an introduction to the OpenOCD Release Processes:
  3. - @ref releasewhy - Explain the motivations for producing
  4. releases on a regular basis.
  5. - @ref releasewho - Describes the responsibilities and
  6. authority required to produce official OpenOCD releases.
  7. - @ref releasewhen - Provides guidelines for scheduling
  8. activities for each release cycle.
  9. - @ref releasehow - Outlines all of the steps for the
  10. processes used to produce and release the package source archives.
  11. - @ref releasescript - Introduces the automated @c release.sh script.
  12. @section releasewhy Why Produce Releases?
  13. The OpenOCD maintainers produce <i>releases</i> periodically for many
  14. reasons. This section provides the key reasons for making releases on a
  15. regular basis and why a set of <i>release processes</i> should be used
  16. to produce them.
  17. At any time, <i>source archives</i> can be produced by running
  18. <code>make dist</code> in the OpenOCD project tree. With the 0.2.0
  19. release, this command will package the tree into several popular archive
  20. formats: <code>openocd-\<version\>.{tar.gz,tar.bz2,zip}</code>. If
  21. produced properly, these files are suitable for release to the public.
  22. When released for users, these archives present several important
  23. advantages when contrasted to using the git repository:
  24. -# They allow others to package and distribute the code.
  25. -# They build easier for developers, because they contain
  26. a working configure script that was produced by the Release Manager.
  27. -# They prevent users from trying a random work-in-process revision.
  28. -# They free developers from answering questions about mainline breakage.
  29. Hopefully, this shows several good reasons to produce regular releases,
  30. but the release processes were developed with some additional design
  31. goals in mind. Specifically, the releases processes should have the
  32. following properties:
  33. -# Produce successive sets of archives cleanly and consistently.
  34. -# Implementable as a script that automates the critical steps.
  35. -# Prevent human operators from producing broken packages, when possible.
  36. -# Allow scheduling and automation of building and publishing milestones.
  37. The current release processes are documented in the following sections.
  38. They attempt to meet these design goals, but there may improvements
  39. remaining to be made toward automating the process.
  40. @section releaseversions Release Versions
  41. The OpenOCD version string is composed of three numeric components
  42. separated by two decimal points: @c x.y.z, where @c x is the @a major
  43. version number, @c y is the @a minor number, and @c z is the @a micro.
  44. For a <i>bug-fix</i> release, the micro version number will be non-zero
  45. (<code>z > 0</code>). For a <i>minor release</i>, the micro version
  46. number will be zero (<code>z = 0</code>). For a <i>major releases</i>,
  47. the minor version will @a also be zero (<code>y = 0, z = 0</code>).
  48. @subsection releaseversiontags Version Tags
  49. After these required numeric components, the version string may contain
  50. one or more <i>version tags</i>, such as '-rc1' or '-dev'.
  51. Mainline and all branches should have the tag '-dev' in
  52. their version number. This tag helps developers identify reports
  53. created from the git repository, and it can be detected and
  54. manipulated by the release script. Specifically, this tag will be
  55. removed and re-added during the release process; it should never be
  56. manipulated by developers in submitted patches.
  57. The 'rc' tags indicate a "release candidate" version of the package.
  58. This tag will also be manipulated by the automated release process.
  59. Additional tags may be used as necessary.
  60. @subsection releaseversionsdist Packager Versions
  61. Distributors of patched versions of OpenOCD are encouraged to extend the
  62. version string with a unique version tag when producing external
  63. releases, as this helps to identify your particular distribution series.
  64. For example, the following command will add a 'foo1' tag to the
  65. configure.in script of a local copy of the source tree:
  66. @code
  67. tools/release.sh version bump tag foo
  68. @endcode
  69. This command will modify the configure.in script in your working copy
  70. only. After running the @c bootstrap sequence, the tree can be patched
  71. and used to produce your own derived versions. The same command can be
  72. used each time the derived package is released, incrementing the tag's
  73. version to facilitate tracking the changes you have distributed.
  74. @subsection releaseversionhow Version Processes
  75. The release process includes version number manipulations to the tree
  76. being released, ensuring that all numbers are incremented at the right
  77. time and in the proper locations of the repository.
  78. The version numbers for any branch should increase monotonically
  79. to the next successive integer, except when reset to zero
  80. during major or minor releases. The community should decide when
  81. major and minor milestones will be released.
  82. @section releasewho Release Manager
  83. OpenOCD archive releases will be produced by an individual filling the
  84. role of <i>Release Manager</i>, hereafter abbreviated as <i>RM</i>. This
  85. individual determines the schedule and executes the release processes
  86. for the community.
  87. @subsection releasewhohow RM Authority
  88. Each release requires one individual to fulfill the RM role; however,
  89. graceful transitions of this authority may take place at any time. The
  90. current RM may transfer their authority to another contributor in a post
  91. to the OpenOCD development mailing list. Such delegation of authority
  92. must be approved by the individual that will receive it and the
  93. community of maintainers. Initial arrangements with the new RM should
  94. be made off-list, as not every contributor wants these responsibilities.
  95. @subsection releasewhowhat RM Responsibilities
  96. In addition to the actual process of producing the releases, the RM is
  97. responsible for keeping the community informed of all progress through
  98. the release cycle(s) being managed. The RM is responsible for managing
  99. the changes to the package version, though the release tools should
  100. manage the tasks of adding or removing any required development branch
  101. tags and incrementing the version.
  102. @section releasewhen Release Schedule
  103. The OpenOCD release process must be carried out on a periodic basis, so
  104. the project can realize the benefits presented in answer to the question,
  105. @ref releasewhy.
  106. Starting with the 0.2.0 release, the OpenOCD project should produce a
  107. new minor release every month or two, with a major release once a year.
  108. Bug fix releases could be provided more frequently. These release
  109. schedule goals may be adjusted in the future, after the project
  110. maintainers and distributors receive feedback and experience.
  111. More importantly, the statements made in this section do not create an
  112. obligation by any member of the OpenOCD community to produce new
  113. releases on regular schedule, now or in the future.
  114. @subsection releasewhenexample Sample Schedule
  115. The RM must pro-actively communicate with the community from the
  116. beginning of the development cycle through the delivery of the new
  117. release. This section presents guidelines for scheduling key points
  118. where the community must be informed of changing conditions.
  119. If T is the time of the next release, then the following schedule
  120. might describe some of the key milestones of the new release cycle:
  121. - T minus one month: start of new development cycle
  122. - T minus two weeks: announce pending mainline closure to new work
  123. - T minus one week: close mainline to new work, begin testing phase
  124. - T minus two days: call for final bug fixes
  125. - T minus one day: produce -rc packages and distribute to testers
  126. - T minus one hour: produce final packages and post on-line
  127. - T minus zero: Announce the release to our mailing list and the world.
  128. Some additional supplemental communication will be desirable. The above
  129. list omits the step-by-step instructions to daily release management.
  130. Individuals performing release management need to have the ability to
  131. interact proactively with the community as a whole, anticipating when
  132. such interaction will be required and giving ample notification.
  133. The next section explains why the OpenOCD project allows significant
  134. flexibility in the part of the development that precedes the release
  135. process.
  136. @note The OpenOCD project does not presently produce -rc packages. As
  137. such, the step suggested in the list above should be read as trying to
  138. stimulate others to test the project build and packaging on as many
  139. platforms as possible. This proposition will be palatable once release
  140. management tools have been committed to the tree.
  141. @subsection releasewhenflex Schedule Flexibility
  142. The Release Manager should attempt to follow the guidelines in this
  143. document, but the process of scheduling each release milestone should be
  144. community driven at the start. By the end, missing features that were
  145. scheduled for a release must be dropped by the Release Manager, rather
  146. than allowing the release cycle to be delayed while waiting for them.
  147. Despite any assurances this schedule may appear to give, the Release
  148. Manager cannot schedule the work that will be done on the project,
  149. when it will be submitted, reviewed, and deemed suitable to be committed.
  150. In this way, the RM cannot act as a priest in a cathedral; OpenOCD uses
  151. the bazaar development model. The release schedule must adapt
  152. continuously in response to changes in the rate of churn.
  153. In particular, the suggested period of "one or two month" reflects some
  154. expectation of a fairly high rate of development. Fewer releases may be
  155. required if developers contribute less patches, and more releases may be
  156. desirable if the project continues to grow and experience high rates of
  157. community contribution. During each cycle, the RM should be tracking
  158. the situation and gathering feedback from the community.
  159. @section releasehow Release Process: Step-by-Step
  160. The release process may require a few iterations to work out any bugs.
  161. Even with the release script, some steps require clear user intervention
  162. -- and not only by the Release Manager.
  163. The following steps should be followed to produce each release:
  164. -# Produce final patches to mainline (or release branch):
  165. -# Finalize @c NEWS file to describe the changes in the release
  166. - This file is Used to automatically post "blurbs" about the project.
  167. - This material should be produced during the development cycle.
  168. - Add a new item for each @c NEWS-worthy contribution, when committed.
  169. -# bump library version if our API changed (not yet required)
  170. -# Remove -dev tag from package version in configure.in:
  171. - For major/minor releases, remove version tag from mainline, @a or
  172. - For bug-fix releases, remove version tag from release branch.
  173. -# Branch or tag the required tree in the git repository:
  174. - Tags and branches for releases must be named consistently: @par
  175. "${PACKAGE_TARNAME}-${PACKAGE_VERSION}"
  176. - For a major/minor release from the mainline, the code should be
  177. tagged in the repository:
  178. @verbatim
  179. svn cp .../trunk .../branches/${RELEASE_BRANCH}
  180. svn cp .../branches/${RELEASE_BRANCH} .../tags/${RELEASE_TAG}
  181. @endverbatim
  182. - For bug-fix releases produced in their respective branch, a tag
  183. should be created in the repository:
  184. @verbatim
  185. svn cp .../branches/${RELEASE_BRANCH} .../tags/${RELEASE_TAG}
  186. @endverbatim
  187. -# Prepare to resume normal development activities:
  188. - Archive @c NEWS file as <code>doc/news/NEWS-${PACKAGE_VERSION}</code>.
  189. - Create a new @c NEWS file for the next release
  190. - For major/minor release from the mainline:
  191. -# Bump major or minor package version in mainline.
  192. -# Restore version tag to mainline.
  193. - For bug-fix releases from a release branch:
  194. -# Bump bug-fix version in release branch.
  195. -# Restore version tag to release branch.
  196. -# Produce the package source archives:
  197. -# Start with a clean working copy, used for producing releases only.
  198. -# Switch to release tag branch: svn switch .../${RELEASE_TAG}
  199. -# Produce a ChangeLog for the release (using svn2cl).
  200. -# @c bootstrap, @c configure, and @c make the package.
  201. -# Run <code>make distcheck</code> to produce the distribution archives.
  202. -# Run <code>make maintainer-clean</code> verify the repository is empty.
  203. -# Create signature files using md5sum, sha1sum, etc.
  204. -# Publish documentation for the release:
  205. - Allow users to access the documentation for each of our releases.
  206. - Place static copies of the following files on the project website:
  207. - @c NEWS: to provide a blurb for each release
  208. - @c ChangeLog: to show exactly what has been changed
  209. - User Guide, Developer Manual: to allow easy on-line viewing
  210. -# Upload packages and post announcements of their availability:
  211. -# Release packages into files section of berliOS project site:
  212. -# Create the new release for the new version.
  213. -# Provide @c NEWS and ChangeLog files, as requested.
  214. -# Upload files via FTP to ftp://ftp.berlios.de/incoming/
  215. -# Edit descriptions for each file.
  216. -# Send E-mail Release Notice
  217. -# Post announcement e-mail to the openocd-development list.
  218. -# Announce updates on freshmeat.net and other trackers.
  219. -# Submit big updates to news feeds (e.g. Digg, Reddit, etc.).
  220. @section releasescript The Release Script
  221. Many of the processes described in the last section are no longer
  222. entrusted to humans. Instead, the @c release.sh script provides
  223. automation of the mechanical steps.
  224. Presently, the @c release.sh script automates steps 1(c) through 4,
  225. allowing the Release Manager from perform these tasks in easy steps.
  226. The following task still need to be automated:
  227. - Step 5: produce documentation for website using released source archive.
  228. - Step 6(a): package archive upload process.
  229. - Step 6(b): package announcement e-mail process.
  230. - Step 6(c): post files and announce them using releaseforge.
  231. In addition, support for '-rc' releases needs to be added.
  232. @subsection releasescriptcmds Release Script Commands
  233. The following output was taken from the release script:
  234. @verbatim
  235. usage: tools/release.sh [options] <command>
  236. Main Commands:
  237. info Show a summary of the next pending release.
  238. release Release the current tree as an archive.
  239. upload Upload archives to berliOS project site
  240. Build Commands:
  241. bootstrap Prepare the working copy for configuration and building.
  242. configure Configures the package; runs bootstrap, if needed.
  243. build Compiles the project; runs configure, if needed.
  244. Packaging Commands:
  245. changelog Generate a new ChangeLog using svn2cl.
  246. package Produce new distributable source archives.
  247. stage Move archives to staging area for upload.
  248. Repository Commands:
  249. commit Perform branch and tag, as appropriate for the version.
  250. branch Create a release branch from project mainline.
  251. tag Create a tag for the current release branch.
  252. Other Commands:
  253. version ... Perform version number and tag manipulations.
  254. clean Forces regeneration of results.
  255. clean_all Removes all traces of the release process.
  256. help Provides this list of commands.
  257. For more information about this script, see the Release Processes page
  258. in the OpenOCD Developer's Manual (doc/manual/release.txt).
  259. WARNING: This script should be used by the Release Manager ONLY.
  260. @endverbatim
  261. Run <code>tools/release.sh help</code> for current command support.
  262. @subsection releasescriptopts Release Script Options
  263. The @c release.sh script recognizes some command-line options that
  264. affect its behavior:
  265. - @c --live : Use this option to perform a live release.
  266. When this option has been given, the release commands will affect
  267. the repository; otherwise, the script reports the actions to take,
  268. and it produces archives that are unsuitable for public release.
  269. @note Only the Release Manager should use the @c --live option, as
  270. it will make permanent changes to the git repository that
  271. cannot be undone.
  272. @subsection releasescriptenv Release Script Environment
  273. The @c release.sh script recognizes some environment variables which
  274. affect its behavior:
  275. - @c CONFIG_OPTS : Passed as options to the configure script.
  276. - @c MAKE_OPTS : Passed as options to the 'make' processes.
  277. @section releasetutorial Release Tutorials
  278. This section provides tutorials for using the Release Script to perform
  279. common release tasks.
  280. @subsection releasetutorialsetup Release Tutorial Setup
  281. The tutorials in this section assume the following environment
  282. variables have been set properly:
  283. @verbatim
  284. SVN_USER="maintainer"
  285. SVN_URL="https://${SVN_USER}@svn.berlios.de/svnroot/repos/openocd"
  286. @endverbatim
  287. @subsection releasetutorialminor Minor Release Tutorial
  288. This section provides a step-by-step tutorial for a Release Manager to
  289. use to run the @c release.sh script to produce a minor release.
  290. If the proper environment has been set, the following steps will produce
  291. a new minor release:
  292. -# Check out (or update) mainline from the repository:
  293. @code
  294. svn checkout "${SVN_URL}/trunk" openocd-trunk
  295. @endcode
  296. -# Change to the new working copy directory:
  297. @code
  298. cd openocd-trunk
  299. @endcode
  300. -# Run @c release.sh to produce the minor release:
  301. @code
  302. tools/release.sh all
  303. @endcode
  304. @subsection releasetutorialmicro Bug-Fix Release Tutorial
  305. This section provides a step-by-step tutorial for a Release Manager to
  306. use to run the @c release.sh script to produce a bug-fix release.
  307. In addition to the environment variables described in the introduction
  308. to these tutorials, the following variables are also used in the
  309. instructions for this section:
  310. @verbatim
  311. PACKAGE_BRANCH_VERSION="x.y.z"
  312. PACKAGE_BRANCH="openocd-${PACKAGE_BRANCH_VERSION}"
  313. @endverbatim
  314. If the proper environment has been set, the following steps will produce
  315. a new bug-fix release:
  316. -# Check out (or update) the release branch from the project repository:
  317. @code
  318. svn checkout "${SVN_URL}/branches/${PACKAGE_BRANCH}" "${PACKAGE_BRANCH}"
  319. @endcode
  320. @code
  321. cd "${PACKAGE_BRANCH}"
  322. @endcode
  323. -# Run @c release.sh to produce the bug-fix release:
  324. @code
  325. tools/release.sh all
  326. @endcode
  327. @section releasetodo Release Script Shortcomings
  328. Improved automated packaging and distribution of OpenOCD requires more
  329. patching of the configure script. The final release script should be
  330. able to manage most steps of the processes. The steps requiring user
  331. input could be guided by an "assistant" that walks the Release Manager
  332. through the process from beginning to end, performing basic sanity
  333. checks on their various inputs (e.g. the @c NEWS blurb).
  334. */
  335. /** @file
  336. This file contains the @ref releases page.
  337. */