Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 562 Bytes

RELEASING.md

File metadata and controls

12 lines (11 loc) · 562 Bytes

Release procedure for KotlinEditor

  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 "chore: prepare for release x.y." && git push
  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 "chore: prepare next development version."
  9. git push && git push --tags