Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 2.88 KB

File metadata and controls

56 lines (38 loc) · 2.88 KB

Creating a Release

  1. select the new version number following https://semver.org/:

Given a version number MAJOR.MINOR.PATCH, increment the:

  • MAJOR version when you make incompatible API changes
  • MINOR version when you add functionality in a backward compatible manner
  • PATCH version when you make backward compatible bug fixes
  1. create a github issue documenting significant release changes; review the commit log and closed issues to find them
This issue is to document functionality and features added to pcms since the #.#.# release (SHA1 of prior release):

New functionality or feature support:

- <feature> (SHA1,issueNumber)
- ...

Bug Fixes:

- <feature> (SHA1,issueNumber)
- ...

Other Updates and Improvements:

- <feature> (SHA1,issueNumber)
- ...
  1. apply the issue/PR label 'v#.#.#' to significant issues and PR that are part of the release
  2. increase the pcms version # in CMakeLists.txt in the develop branch
  3. commit; include the issue # in the commit message
pcms version #.#.#                                                                                                                                                        
see issue #<###>
  1. push
  2. create the tag git tag -a v#.#.# -m "pcms version #.#.#"
  3. push the tag git push origin v#.#.#

Maintain CI/CD

Current CI/CD contains:

To maintain the CI/CD pipeline, ensure that any changes to the build or test processes are reflected in those workflow file. Regularly review the workflow for updates to dependencies or tools used in the pipeline. When adding new steps to the CI/CD process, ensure they are properly integrated and tested to avoid disruptions. Try to avoid third party actions for security and maintenance reasons.