Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 658 Bytes

VERSION.md

File metadata and controls

11 lines (9 loc) · 658 Bytes

How to release a software version?

  1. Update CHANGELOG.md.
  2. Commit and push all changes.
  3. Create a github tag and mark the version with "pre" for pre-release, e.g. "V1.0.0pre".

Software version format: V..

  • Increase the major number in case of incompatible interface changes or incompatible behavior. That means that the user of the framework has to adapt its implementation too.
  • Increase the minor number in case of compatible interface and behavior changes. The user must not adapt its implementation, just use the new version.
  • Increase the patch number in case of bugfixes only.