Merge branch 'maint'
[org-mode.git] / README_maintainer
blob24b7bd0f64fa2578590d650aba7824e807020949
1 # -*- mode:org -*-
3 #+TITLE: Org maintainer tasks
4 #+STARTUP: noindent
5 #+OPTIONS: ^:nil
7 This document describes the tasks the Org-mode maintainer has to do
8 and how they are performed.
10 * Git workflow
12 The git repository has two branches:
14 - master :: for current development.
16 - maint :: for bug fixes against latest major or minor release.
18 Bug fixes always go on =maint= then are merged on =master=.
20 New features always go on =master=.
22 * Releasing
24 ** Major release
26 The release number for main releases look like this: =7.13=
28 Main releases are made whenever Org is in a state where the feature
29 set is consistent and we feel that the features that are implemented
30 is something we want to support in the future.
32 A major release turns the current state of the master branch into a
33 release.
35 When doing a /major release/, make sure all changes from the maint
36 branch are merged into the the master branch, then merge the master
37 branch back into maint to synchronize the two.
39 ** Minor release
41 The release number for minor releases look like this:  =7.13.1=
43 Minor releases are small amends to main releases.  Usually they fix
44 critical bugs discovered in a main release.  Minor bugs are usually
45 not fixed -- they will be adressed in the next main release.
47 Only the fix to the bug is bundled into a release, without the main
48 development work going on in the master branch.  Since the bug fix
49 will also be needed in the master branch, usually the fix is made in
50 maint then merged in master.
52 ** Tagging the release
54 When doing a major and a minor release, after all necessary merging is
55 done, tag the _maint_ branch for the release with:
57   git tag -a release_7.9.1 -m "Adding release tag"
59 and push tags with
61   git push --tags
63 We also encourage you to sign release tags like this:
65   git tag -s release_7.9.1 -m "Adding release tag"
67 ** Uploading the release files from the orgmode.org server
69 Log on the orgmode.org server as the emacs user and cd to
70 ~/git/org-mode
72 From there do
74   make release
75   make upload
77 to create the .tar.gz and .zip files, the documentation, and to
78 upload everything at the right place.
80 * Available Org's builds on the server
82 There are two cron tasks on the server: one that builds the ELPA
83 packages and one that builds org-latest.tar.gz and org-latest.zip.
85 ELPA packages are built from the *maint* branch.  One ELPA package
86 contains Org's core, another one called "org-plus-contrib" contains
87 Org and contributed libraries.
89 org-latest* snapshots are built from the *master* branch.
91 * Synchronization Org and upstream Emacs
93 Below it is described how Org is kept in sync with the upstream Emacs.
95 ** Backporting changes from upstream Emacs
97 Sometimes Emacs maintainers make changes to Org files.  The process of
98 propagating the changes back to the Org repository is called
99 /backporting/ for historical reasons.
101 To find changes that need to be backported from the Emacs repository,
102 the following =git= command, courtesy of [[http://permalink.gmane.org/gmane.emacs.devel/215861][Kyle Meyer]], can be used:
104 #+begin_src shell
105   git log $rev..origin/emacs-25 -- lisp/org doc/misc/org.texi \
106     etc/refcards/orgcard.tex etc/ORG-NEWS etc/org \
107     etc/schema/od-manifest-schema-v1.2-os.rnc \
108     etc/schema/od-schema-v1.2-os.rnc
109 #+end_src
111 here, =$rev= is the last commit from the =emacs-25= branch that was
112 backported.  The should also be done for the =master= branch.
114 There is also a [[http://git.savannah.gnu.org/cgit/emacs.git/atom/lisp/org/][feed]] to keep track of new changes in the =lisp/org=
115 folder in the Emacs repository.
117 ** Updating the Org version in upstream Emacs
119 New releases of Org should be added to the [[https://git.savannah.gnu.org/cgit/emacs.git][Emacs repository]].
121 Typically, Org can be synchronized by copying over files from the
122 =emacs-sync= branch of the Org repository to the =master= branch of Emacs
123 repository.  The =emacs-sync= branch has a few extra changes compared with
124 the =maint= branch.  If the Emacs maintainers are planning a new release
125 of Emacs soon, it is possible that another branch should be used.
127 If the new release of Org contains many changes, it may be useful to
128 use a separate branch before merging, e.g. =scratch/org-mode-merge=.
129 This branch can then be merged with the =master= branch, when everything
130 has been tested.
132 Please see [[http://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE][CONTRIBUTE]] in the Emacs repository for guidelines on
133 contributing to the Emacs repository.
135 *** Where to files go
137 The following list shows where files in Org repository are copied to in
138 the Emacs repository, folder by folder.
140 **** =org-mode/doc=
142 - =org.texi= :: Copy to =emacs/doc/misc=.  It may be necessary to replace,
143      ~@include org-version.inc~ with ~@set VERSION 9.0.9~ or similar.
145 - =orgcard.tex= :: Copy to =emacs/etc/refcards=.  Make sure that
146      ~\def\orgversionnumber~ and ~\def\versionyear~ are up to date.
148 ****  =org-mode/etc=
150 - =styles/*= :: Copy to =emacs/etc/org=.
152 - =schema/*.rnc= :: Copy to =emacs/etc/schema=.
154 - =schema/schemas.xml= :: Any new entries in this file should be added
155      to =emacs/etc/schema/schemas.xml=.
157 - =ORG-NEWS= :: Copy to =emacs/etc=
159 **** =org-mode/lisp=
161 - Copy =*.el= files to =emacs/lisp/org=, except =org-loaddefs.el=!
163 - You should create =org-version.el= in =emacs/lisp/org=.  The file is
164   created when you =make= Org.
166 **** TODO =org-mode/testing=
168 *** Update  =emacs/etc/NEWS=
169 Whenever a new (major) version of Org is synchronized to the Emacs
170 repository, it should be mentioned in the NEWS file.
171 * Updating the list of hooks/commands/options on Worg
173 Load the =mk/eldo.el= file then =M-x eldo-make-doc RET=.
175 This will produce an org file with the documentation.
177 Import this file into =worg/doc.org=, leaving the header untouched
178 (except for the release number).
180 Then commit and push the change on the =worg.git= repository.
182 * Copyright assignments
184 The maintainer needs to keep track of copyright assignments.  Even
185 better, find a volunteer to do this.
187 The assignment form is included in the repository as a file that you
188 can send to contributors: =request-assign-future.txt=
190 The list of all contributors from who we have the papers is kept on
191 Worg at http://orgmode.org/worg/org-contribute.html, so that
192 committers can check if a patch can go into the core.
194 The assignment process does not allways go smoothly, and it has
195 happened several times that it gets stuck or forgotten at the FSF.
196 The contact at the FSF for this is: mailto:copyright-clerk@fsf.org
198 Emails from the paper submitter have been ignored in the past, but an
199 email from me (Carsten) as the maintainer of Org mode has usually
200 fixed such cases within a few days.