Mercurial > hg > minc-tools
view README.release @ 2656:946695de0dca
EZ minc test implimentation
author | Vladimir S. FONOV <vladimir.fonov@gmail.com> |
---|---|
date | Fri, 23 Mar 2012 16:41:29 -0400 |
parents | 356c5bda3c9d |
children |
line wrap: on
line source
# how to use git and the master and develop branches http://nvie.com/posts/a-successful-git-branching-model/ # libtool and libraries We are using libtool to (possibly) generate a shared library for libminc and libvolume_io. Each library has a three-component version string, in Makefile.am CURRENT[:REVISION[:AGE]] # Release procedure * Update NEWS. * Update the -version-info argument in Makefile.am according to the following rules: 0. Each library's version should be updated according to these rules INDEPENDENTLY! 1. If the library source code has changed at all since the last update, then increment REVISION (`C:R:A' becomes `C:r+1:A'). 2. If any interfaces have been added, removed, or changed since the last update, increment CURRENT, and set REVISION to 0. 3. If any interfaces have been added since the last public release, then increment AGE. 4. If any interfaces have been removed since the last public release, then set AGE to 0. * Configure, build, and install. * Commit. * Run "make distcheck". * Test build from tarball on another system. * Copy tar file to distribution site. * Run "cvs tag minc-x-y-z" (MINC x.y.z). * Update version number in configure.in. * Commit.