Skip to content

Maintainer's Guide

Cameron Smith edited this page May 26, 2020 · 21 revisions

Creating a Release

  1. increase cmake version # in CMakeLists.txt the develop branch
  2. create a github issue documenting significant release changes and updates
This issue is to document functionality and features added PUMI since the #.#.# release (SHA1):
    <feature> (SHA1,issueNumber)
    <otherfeature> (SHA1,issueNumber)
  1. push to github and include the issue # in the commit message
  2. merge develop to master
  3. create tag
git checkout master
git tag -a v#.#.# -m "PUMI version #.#.#"
git push origin v#.#.#
Clone this wiki locally