-
Define the next semantic version
Semantic versioning: a.b.c
- a: major breaking changes
- b: new functionality, new features
- c: any other small changes
-
Checkout the main branch and make sure it is up-to-date:
git checkout main && git pull
-
Create a new branch
-
Update the CHANGELOG.md file with changes of this release
-
Change the version in
gradle.properties
-
Change the version in
maestro-cli/gradle.properties
-
git commit -am "Prepare for release X.Y.Z."
(where X.Y.Z is the new version) -
Submit a PR with the changes against the main branch
-
Merge the PR
git tag -a vX.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)git push --tags
- Wait until all Publish actions have completed https://github.com/mobile-dev-inc/maestro/actions
- Trigger the Publish CLI Github action
- Test installing the cli by running
curl -Ls "https://get.maestro.mobile.dev" | bash
- Check the version number
maestro --version