| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | 
# -*- mode:org -*-#+title: Maintainer tasks#+startup: indentThis document describes the tasks the Org-mode maintainer has to doand how they are performed.* Releases** Main releasesThe release number for main releases look like this:  =7.13=Main releases are made whenever Org is in a state where the featureset is consistent and we feel that the features that are implementedis something we want to support in the future.A major release turns the current state of the master branch into arelease.  The release process is a single make command:: make release TAG=7.13** Minor releasesThe release number for minor releases look like this:  =7.13.01=Minor releases are small amends to main releases.  Usually they fixbugs discovered in a main release.  Only the fix to the bug isbundled into a release, without the main development work going on inthe master branch.  Since the big fix will also be needed in themaster branch, usually the fix is made in master and thencherry-picked into maint.  When this is done, a release is made frommaint with this command:: make fixrelease TAG=7.13.01* Synchonization with EmacsThis is still a significant headache.  Some hand work is needed here.Emacs uses bzr, I cannot bring myself to switch from git to bzr for thedevelopment version of Org-mode.  So the way I have been doing thingsis this:1. I watch the Emacs diffs for changes made by the maintainers of   Emacs in the org-mode files in Emacs.  Any changes that come up   there, I merge into the development version of Org-mode.   Occasionally I do not do this, if I do not agree with a change.   The changes go into Org /without/ a ChangeLog-like entry in the   commit message.  The reason for this is that we will later generate   a ChangeLog file from our commit messages, and I do not want double   Change entries in the Emacs ChangeLog file.2. When I have made a release (usually I wait for the minor releases   to stabilize), I copy org files into the Emacs repository.  Yes, I   do not merge, I copy.  This has been the source of some problems in   the past - but I have not had the patience to work out a better   mechanism.   Careful: Copy org.texi and orgcard.tex into the right places, and   also copy the lisp files with *two exceptions*: Do *not* copy   /org-colview-xemacs.el/ and /org-install.el/.  The former does not   belong in Emacs.  And the latter would actually be harmful because   Emacs generates its own autoloads.  The Emacs distribution contains   an empty org-install.el, so that users can have =(require   'org-install)= in .emacs with no ill effects.  So if you were to   copy org-install.el, you would overwrite that empty placeholder   file.3. Generate the ChangeLog entries   For this, I do in the org-mode git repository   : UTILITIES/make_emacs_changelog release_7.02.05..release_7.03.02   This will spit out the ChangeLog entries that need to go into the   ChangeLog file in the lisp/org directory in Emacs.
 |