- Check ABI/API version
  (http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html)
  * If bumping, bump in:
    * Makefile.am
      - use libtool versioning
    * libconcord.py
      - only need the _current_ part of the version

- Bump concordance version number
  * concordance/concordance.c
  * concordance/configure.ac
  * libconcord/configure.ac
  * libconcord/bindings/python/setup.py

- Check for old version:
  * fgrep -R '0.20' *

- Make clean, recompile, reinstall, test

- Change version in Changelog, commit

- Git tag release
  git tag -a v1.1 -m 'Concordance version 1.1'

- Make tarbal
  # from top-level
  git archive --format=tar --prefix=concordance-$version/ v$version | \
     bzip2 > /tmp/concordance-$version-prep.tar.bz2
  cd /tmp && tar jxf concordance-$version.tar.bz2
  cd /tmp/concordance-$versionp/libconcord
  mkdir m4; autoreconf -i
  cd ../concordance
  mkdir m4; autoreconf -i
  cd ../..
  tar jcf concordance-$version.tar.bz2 concordance-$version

- test compile, upload


vim:textwidth=78:
