Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 674 Bytes

File metadata and controls

13 lines (10 loc) · 674 Bytes

Contributing to this repository

Releasing a new version

  • On the main branch, do git pull
  • Create a new chore branch and bump the maven project version--push the changes (this can be done in a feature branch too when working on a new change and that release will contain only that feature/change)
  • Open a PR from the newly created branch
  • Merge the PR once it is ready
  • On the main branch, do git pull again
  • Create a new tag: git tag release/xxx.yyy.zzz, where xxx is the major version, yyy is the minor version, and zzz is the patch version. See semantic versioning for more info.
  • Push the new tag git push --tags