Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 751 Bytes

RELEASING.md

File metadata and controls

14 lines (13 loc) · 751 Bytes

Release procedure for gradle-dependencies-sorter

  1. Update CHANGELOG
  2. Update README if needed
  3. Bump version number in gradle.properties to next stable version (removing the -SNAPSHOT suffix).
  4. git commit -am "Prepare for release x.y."
  5. Publish the snapshot to Maven Central by invoking the publish action on github.
  6. git tag -a vx.y -m "Version x.y."
  7. Update version number gradle.properties to next snapshot version (x.y-SNAPSHOT)
  8. git commit -am "Prepare next development version."
  9. git push && git push --tags
  10. (Optional) Follow instructions in console output to release from Maven Central's staging repo. This step is now automated via the :promote task, and should only be necessary if that task fails.