Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • For versioning, we use Semantic Versioning (major.minor.patch)

    • We increment the patch version for bugs/fixes

    • We increment the minor version for new functionality

    • We increment the major version for breaking changes (or to communicate to the user “big changes”)

  • For branching:

    • development contains the upcoming/next release, while we branch for releases as close to the end of development as possible (usually around/after code freeze)

    • release/x.y.z contains the code for that specific release

  • This allows us to patch/hotfix previous releases quickly, while working on riskier changes in isolation for the upcoming/next release.

...