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

ReleaseInstructions 12 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. Instructions for making a Release:
  2. Authors: Conor MacNeill
  3. Stefan Bodewig
  4. Magesh Umasankar
  5. Antoine Levy-Lambert
  6. Note: This document was updated in the context of releasing Ant 1.7.
  7. Please interpret the branch names, tags, etc. according to
  8. your context.
  9. 1. Propose a release plan for vote. This should set out the timetable for
  10. the release under ideal circumstances.
  11. The issue of whether to create a branch for the release should be
  12. discussed in the release vote.
  13. The level of bugs reported can delay things. Generally, give a few
  14. weeks to "close" the source tree to further changes so people can
  15. finalise contributions, etc. At this time, the first beta will be
  16. cut and there will be then a period of beta testing, usually 1
  17. month but this should be flexible.
  18. 2. Note that any mention of a deadline causes a flood of bug fixes, new tasks,
  19. etc. This needs to be managed as best it can. Some fixes will be applied,
  20. others held over. Make this clear in the release plan. The committers and
  21. particularly the release manager will need to make judgement calls here.
  22. Anything too "big" is likely to be held over.
  23. 3. Once the freeze date arrives, create a branch for the release builds,
  24. if this was decided in the release vote. This was done for Ant 1.6,
  25. but not for Ant 1.7, nor for Ant 1.8.
  26. You will need to be comfortable in handling SVN branches with multiple
  27. merge-backs to the main branch and even selected merges from the the main
  28. branch to the release branch.
  29. For more information on performing branching and merging, please visit
  30. http://svnbook.red-bean.com/nightly/en/svn-book.html
  31. Label such branches ANT_16_BRANCH.
  32. If the new version is created on the trunk, create or update a branch ANT_SITE
  33. and switch /www/ant.apache.org to point to ANT_SITE rather than to the trunk.
  34. The ANT_SITE branch and the trunk will be different during the time between
  35. the new build and the actual release, which is normally one week in order
  36. to vote on the release artifacts. During this time, ANT_SITE does not mention
  37. yet the new release.
  38. 4. Once the branch is setup, the version numbers in SVN are changed. On the
  39. branch, the project.version property in build.xml becomes 1.7Beta.
  40. If there were a main branch, its build.xml would have 1.8alpha.
  41. [[ TODO: Check if the documentation files also need to be updated to point
  42. to the right areas of Ant's website. ]]
  43. 5. Before a build :
  44. the first beta on the 1.7 branch has been called 1.7.0Beta1, ...
  45. the project.version property in build.xml governs the output of
  46. ant -version and the naming of the distribution files.
  47. Update the following files for version number:
  48. On the branch only :
  49. * docs/manual/cover.html
  50. * docs/manual/credits.html
  51. * build.xml properties : project-version & manifest-version
  52. * POM files under src/etc/poms and subdirectories
  53. Commit your changes.
  54. On the branch and on the main trunk (*):
  55. * WHATSNEW
  56. * xdocs/antnews.xml (Announcement)
  57. * xdocs/faq.xml (Ant's history details - not for betas)
  58. * xdocs/index.xml (Announcement, latest release details, link to
  59. manual under "Documentation")
  60. * xdocs/srcdownload.xml
  61. * xdocs/bindownload.xml
  62. Generate the html files by invoking ant on docs.xml
  63. (use -projecthelp for instructions).
  64. Commit the modified/generated files
  65. 6. Ensure you have all the external libraries that Ant uses in your
  66. lib/optional directory. In fact NetRexxC/NetRexxR are the only commercial
  67. dependencies as of 1.8.0 which are "hard to find". Other dependencies are
  68. either provided by JDK 1.5.0 or downloadable using
  69. ant -f fetch.xml -Ddest=optional.
  70. To find out whether you have all the libraries you need, execute
  71. the build with -verbose option and scan for lines beginning with
  72. "Unable to load...".
  73. 7. Make sure that your directory tree is clean by running svn status.
  74. Some tests leave behind leftovers which end up in the source
  75. distribution otherwise.
  76. 8. Next bootstrap, build and run the tests. Then build the distribution
  77. on the branch. It is important that this be a clean build. Label this with
  78. a tag ANT_170_B1.
  79. The file release.sh gives an idea of how to do this build process,
  80. currently in two steps, one with JDK 1.4 and one with JDK 1.5
  81. C:\dev\asf\ant-core>
  82. svn copy https://svn.apache.org/repos/asf/ant/core/trunk \
  83. https://svn.apache.org/repos/asf/ant/core/tags/ANT_170_B1 \
  84. -m "Tagging version 1.7.0Beta1 of Ant"
  85. Revision 437509 Uebertragen.
  86. 9. Sign the distribution files using the following simple script
  87. @TODO : document using commons-openpgp to sign the artefacts,
  88. change the build file to do this
  89. #!/bin/sh
  90. # signing the various source and binary archives of the entire distribution
  91. for i in `/usr/bin/find distribution \( -name "*.bz2" -o -name "*.zip" -o -name "*.gz" \)`
  92. do
  93. echo "Signing " $i
  94. gpg -a -b --force-v3-sigs $i
  95. done
  96. # signing the maven artefacts
  97. for i in `/usr/bin/find java-repository \( -name "*.pom" -o -name "*.jar" \)`
  98. do
  99. echo "Signing " $i
  100. gpg -a -b --force-v3-sigs $i
  101. done
  102. The --force-v3-sigs will improve the interoperability with PGP 5.x,
  103. see <http://www.gnupg.org/(en)/documentation/faqs.html#q5.5>.
  104. Before you do that, ensure that the key you use is inside the KEYS
  105. file in Ant's SVN repository
  106. <https://svn.apache.org/repos/asf/ant/antlibs/common/trunk/KEYS> -
  107. and that you perform a svn update on the KEYS file in
  108. /www/www.apache.org/dist/ant/common
  109. Also make sure you have sent the key that you use to a public
  110. keyserver.
  111. 10. The beta distribution is now ready to go. Bundle it up into a tar.gz file
  112. and scp to your apache account.
  113. 11. Meanwhile, convert the part of the WHATSNEW file covering the changes
  114. since the last release into HTML for the README file on the
  115. website. See the previous release directories for examples of these files.
  116. Add instructions and warnings (GNU tar format issues, etc).
  117. Use the target txt2html of docs.xml
  118. Name the generated file RELEASE-NOTES-x.y.z.html.
  119. Change the title to something like "Release Notes of Apache Ant
  120. 1.7.0Beta2" (from the default txt2html)
  121. 12. Once this is uploaded, unpack things in your home directory
  122. and call for a release vote on dev@ant. The vote will only pass
  123. if at least three PMC members have voted +1 and more +1s than -1s
  124. have been cast. The vote will run for a week.
  125. 13. Once the vote has passed, create the release directory,
  126. something like v1.7.0Beta1, push the release and RELEASE-NOTES files
  127. into this directory. Create a symbolic link named README.html
  128. that points to the RELEASE-NOTES.
  129. The files should go to /www/www.apache.org/dist/ant/ on people.apache.org.
  130. 14. Address the available release tags in BugZilla. Create a new tag 1.7.0Beta1.
  131. If there is a separate main branch, create a 1.8alpha tag.
  132. Assign all existing 1.7 alpha bugs to 1.7.0Beta1.
  133. Note that such massive changes can be done at once by choosing the
  134. link "Change several bugs at once" at the bottom of the bug list
  135. displaying the 1.7alpha bugs.
  136. 15. Once that is done, do a test download to make sure everything is OK. A
  137. common problem may be:
  138. * the file's mime type is not recognized and is interpreted as
  139. text/plain. Fix it by using some .htaccess magic (AddEncoding stuff)
  140. * Your gz.asc files are not being displayed properly (RemoveEncoding stuff)
  141. If it looks OK, announce it on dev@ant and user@ant. After a few
  142. days pass and there are no major problems, a wider announcement is
  143. made (ant website, main jakarta website, announcements@jakarta.apache.org,
  144. etc).
  145. you also need to checkout parallel to ant-core
  146. https://svn.apache.org/repos/asf/ant/site then go to the
  147. subdirectory generated svn propedit svn:externals to change the
  148. location of the manual
  149. Announce beta releases at freshmeat.net (Stefan Bodewig is the
  150. owner of Ant's project entry - bug him ;-).
  151. 16. As problems in the beta are discovered, there may be a need for
  152. one or more subsequent betas. The release manager makes this
  153. call. Each time, the versions are updated and the above process is
  154. repeated. Try not to have too many betas.
  155. 17. Try to advertise the need for testing of the betas as much as possible.
  156. This would eliminate the need to release minor patch versions like
  157. we had to do when releasing Ant 1.4.
  158. To monitor the number of downloads, look at the access_log
  159. file under /usr/local/apache2/logs
  160. 18. When the final beta is considered OK, propose a vote on dev@ant to
  161. officially adopt the latest beta as the Ant 1.6 release. If it is passed,
  162. (it usually does,) this would be labelled ANT_16 and built in a similar
  163. fashion to the above process.
  164. It is probably a good idea to have the re-labeled distribution
  165. files ready in time for the vote so that no additional vote on the
  166. actual package is required later.
  167. 19. This time you'll have to do some house-keeping for the old
  168. release:
  169. * upload the new release files to
  170. from distribution
  171. to /www/www.apache.org/dist/ant/[source|binaries].
  172. and
  173. from java-repository/org/apache/ant
  174. to
  175. /www/people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/ant
  176. * remove the symbolic links from /www/www.apache.org/dist/ant.
  177. * Create proper -current symlinks in /www/www.apache.org/dist/ant/
  178. * Make sure that the symbolic link README.html points to the new
  179. RELEASE-NOTES.
  180. (**)
  181. 20. Update the ant.apache.org site :
  182. Perform update on files in people.apache.org's /www/ant.apache.org/
  183. This might mean switching /www/ant.apache.org back from the ANT_SITE branch
  184. to the trunk.
  185. svn update runs as a cron job, what matters is to which branch the web site
  186. points too.
  187. svn switch the online manual to the tag of the release.
  188. 21. Clean up.
  189. * remove the remaining files of the previous release and betas from
  190. /www/www.apache.org/dist/ant/[source|binaries].
  191. This includes the old release notes.
  192. (+)
  193. 22. Now and perhaps during previous betas any changes on the branch must
  194. be merged back into the tree.
  195. 23. At this point in time, the release is done and announcements are made.
  196. PGP-sign your announcement posts.
  197. [[TODO: Identify the mailing lists where announcements are to be made.
  198. Also identify the webpages to which the announcements must go. ]]
  199. Apache mailing lists that should get the announcements:
  200. announcements@jakarta.apache.org, announcements@xml.apache.org,
  201. announce@apache.org, dev@ant and user@ant.
  202. Announce release at freshmeat.net
  203. (Stefan Bodewig is the owner of Ant's project entry - bug him ;-).
  204. Announce release in the usenet groups comp.lang.java.softwaretools
  205. and comp.lang.java.announce.
  206. 24. Add a new release tag to doap_Ant.rdf in Ant's trunk.
  207. 25. You can now reacquaint yourself with your family and friends.
  208. (*) the xdocs need to be updated on both the branch and the HEAD revision
  209. because traditionally the ant.apache.org web site reflects the HEAD
  210. revision of the xdocs, but the users downloading a distribution will get
  211. the xdocs and the generated html from the branch and will complain if there
  212. are discrepancies in version numbers.
  213. (**) Mirrors : the srcdownload.html and bindownload.html each list a number of
  214. mirrors. For ant 1.6.0 the mirrors picked up the new version in 8 hours
  215. or less, the release having been done at midnight on Dec 18th, the
  216. mirrors had it on Dec 19th at 8 am. The srcdownload/bindownload pages both
  217. contain a note advising users to be patient immediately after the release.
  218. (+) Don't expect the old releases to disappear from
  219. www.apache.org/dist as soon as the new releases are there.
  220. The rsync process from people.a.o to www.a.o adds files once per
  221. hour but only deletes once per day.
  222. Related Information
  223. http://www.apache.org/dev/#releases
  224. http://commons.apache.org/releases/index.html
  225. http://wiki.apache.org/commons/SigningReleases