COIN-OR::LEMON - Graph Library

Changes between Version 9 and Version 10 of MakingRelease


Ignore:
Timestamp:
09/10/08 16:24:40 (16 years ago)
Author:
Alpar Juttner
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MakingRelease

    v9 v10  
    3737== Bugfix Changesets ==
    3838 
    39  - Do the bugfix on the top of the common ancestor changeset of all branches where the bug appears (e.g. on the top of '''1.0-base''').
     39 - Do the bugfix on the top of the common ancestor changeset of all branches where the bug appears. This changeset can be found with the {{{debuganchestor}}} command like this.
     40   {{{
     41hg debugancestor default 1.0
     42   }}}
    4043 - Then merge them individually to all branches where it applies.
     44   - '''Important:''' Update to the branch head first, then merge to the bugfix changeset, otherwise the the merge commit will not belong to the branch.
     45     {{{
     46hg up -C 1.0
     47hg merge -r 1234
     48hg ci -m 'Merge to 1.0'
     49     }}}
    4150
    4251== Bugfix Releases ==