Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
git checkout -b fcreporelease-4.0.0-beta-01-RC
git push origin fcreporelease-4.0.0-beta-01-RC

Update online resources

If any online resources have been modified or added to during the release, these must be updated.

...

Merge the release candidate branch into master (if any commits were made)

Code Block
git checkout fcreporelease-4.0.0-beta-01-RC
git pull origin fcreporelease-4.0.0-beta-01-RC
git checkout master
git merge fcreporelease-4.0.0-beta-01-RC
git push origin master
git branch -d fcreporelease-4.0.0-beta-01-RC
git push origin :fcreporelease-4.0.0-beta-01-RC

 

Build and release the final distribution to Maven Central

...