Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 595 Bytes

RELEASE.md

File metadata and controls

13 lines (12 loc) · 595 Bytes

Resync Release Process:

In this example we are releasing version 1.0.1

  1. Check out release-1.x
  2. run mvn versions:set -DnewVersion=1.0.1
  3. modify docs/antora.yml and change the version to version: '1.0.1'
  4. commit changes git commit -a -m "v1.0.1-SNAPSHOT -> v1.0.1
  5. tag the release git tag v1.0.1
  6. push changes git push && git push --tags
  7. run mvn versions:set -DnewVersion=1.0.2-SNAPSHOT
  8. modify doc/antora.yml and change the version to version: '1.0.2-SNAPSHOT'
  9. commit changes git commit -a -m "v1.0.1 -> v1.0.2-SNAPSHOT
  10. push changes git push