In this example we are releasing version 1.0.1
- Check out
release-1.x
- run
mvn versions:set -DnewVersion=1.0.1
- modify
docs/antora.yml
and change the version toversion: '1.0.1'
- commit changes
git commit -a -m "v1.0.1-SNAPSHOT -> v1.0.1
- tag the release
git tag v1.0.1
- push changes
git push && git push --tags
- run
mvn versions:set -DnewVersion=1.0.2-SNAPSHOT
- modify
doc/antora.yml
and change the version toversion: '1.0.2-SNAPSHOT'
- commit changes
git commit -a -m "v1.0.1 -> v1.0.2-SNAPSHOT
- push changes
git push