The following steps document the process for producing a new PropWare release:
- Using
git flow
, create a new release branch. If the version to be released is 1.2.3, the command would begit flow release start 1.2.3
- Update
<root>/version.txt
with the new version number. - Update
DocumentationConfig.cmake
with the appropriate value forHTML_OUTPUT_DIRECTORY
. (Not applicable to patch versions.) The final directory name should beapi-<MAJOR VERSION>.<MINOR VERSION>
- Commit changes.
- Using
git flow
, merge the release back into master:git flow release finish 1.2.3