-
Notifications
You must be signed in to change notification settings - Fork 89
Release Process
Note: Send notification in the Slack eclipse-dirigible workspace, that release is going to be scheduled.
Hi team,
Release X.Y.Z is being scheduled for today. Please let us know, if there are any pending changes, that needs to be included in this release.
Regards,
XXX
-
Check the Build GitHub action status.
-
Pull the latest changes:
git pull
-
Set the release version:
mvn versions:set -DnewVersion=5.4.0 git add . git commit -m "version set to 5.4.0 for release" git push
-
Trigger the GitHub Release action:
git tag v5.4.0 git push origin v5.4.0
Note: Check https://status.maven.org/ before triggering the release!
There could be a maintenance going on during the build, if that's the case, usually the
Publish packages to Maven Central
step will fail with 405 Not Allowed. -
Wait for the release action to complete.
Usually it takes around 1 hour! To check the release action progress, go here.
-
Check the latest release:
-
Check if a release branch was created from here.
If there is no release branch created automatically, create one manually - e.g. 5.4.0
-
Close and Release the uploaded content to Maven Central:
Login to: https://oss.sonatype.org/#nexus-search;quick~dirigible
- Close
- Release
-
Validate Trial:
Go to: http://trial.dirigible.io and check the version from the About view.
-
Set the development version:
mvn versions:set -DnewVersion=5.5.0-SNAPSHOT git add . git commit -m "version set to 5.5.0-SNAPSHOT for development" git push
-
Create the Release Notes:
Go to: https://github.com/dirigible-io/dirigible-io.github.io/tree/master/_posts/releases
-
Notify community via e-mail
Send e-mail to [email protected] by template:
Release: <release version, e.g. 5.7.0>
Hi All, The major/minor/micro version <release version, e.g. 5.7.0> has been released [1] as Type A, ready for download [2] and as Maven dependences [3]. The branch 'master' has been set to <next release version, e.g. 5.8.0>-SNAPSHOT for development. Regards, <sender name> [1] https://www.dirigible.io/release/2021/01/31/news_new_release_5_7.html [2] http://download.dirigible.io [3] https://search.maven.org/#search%7Cga%7C1%7Corg.eclipse.dirigible
-
Share via social media:
- https://twitter.com/dirigible_io
- https://news.ycombinator.com/
- https://www.facebook.com/dirigible.io/
- https://www.linkedin.com/groups/8413366/
Delete Tag:
git tag -d v5.4.0
git push --delete origin v5.4.0
Enjoy!