Changes between Version 51 and Version 52 of StartModMaint


Ignore:
Timestamp:
Dec 26, 2013, 10:42:54 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StartModMaint

    v51 v52  
    209209=== Lightweight library release ===
    210210
    211 Small, simple libraries and simple releases just merge {{{develop}}} into {{{master}}}, tag {{{master}}}, and declare victory.
     211Small, simple libraries and simple releases just merge the development branch, such as {{{develop}}}, into {{{master}}}, and test like this:
    212212
    213213{{{
    214214git checkout master
    215215git merge --no-ff develop
    216 git tag -a 1.56.1
     216pushd test
     217b2
     218popd
     219}}}
     220
     221If there are any test failures, correct the problem, retest, and commit the fixes before proceeding with the release!
     222
     223if there are no test failures, tag {{{master}}}, push {{{master}}}, and declare victory.
     224
     225{{{
     226git tag -a 1.2
     227git push
    217228}}}
    218229