.Node Stable Release

Chapters

  1. Post Releasing

1 Post Releasing

  • cleanup the release branch

  git checkout release
  git pull origin relese
  mvn release:clean
  git add .
  git commit -am "Post release cleanup of release plugin files within dev branch"
  git push origin release
  • merge changes from the release branch back into dev

  git checkout dev
  git pull origin dev
  git pull origin release
  git push origin dev

Note: Please note that you have to adapt the artifact version within the dev branch. The dev branch pom.xml artficat version must always be set that way that this version points to the next feature release and the version must contain the dev classifier.

Examples:


  1.11.0-dev-SNAPSHOT
  • merge release into master

  git checkout master
  git pull origin master
  git pull origin release
  git push origin master