Release procedure for KotlinEditor
- Update CHANGELOG
- Update README if needed
- Bump version number in
gradle.properties
to next stable version (removing the-SNAPSHOT
suffix). git commit -am "chore: prepare for release x.y." && git push
- Publish the snapshot to Maven Central by invoking the
publish
action on github. git tag -a vx.y -m "Version x.y."
- Update version number
gradle.properties
to next snapshot version (x.y-SNAPSHOT) git commit -am "chore: prepare next development version."
git push && git push --tags