diff --git a/docs/platforms-release-process.md b/docs/platforms-release-process.md index 093cf3ad6..2f18ca651 100644 --- a/docs/platforms-release-process.md +++ b/docs/platforms-release-process.md @@ -258,13 +258,19 @@ Create and prepare your release branch by using `coho prepare-platform-release-b 3. Propagates version number from `--version` argument (or from `package.json` if there is no `--version` argument) to all other files (`VERSION` and similar [e.g. `build.gradle` for Android]) on the release branch `5.0.x` 4. Prepares `master` for future development already: It gives version (`package.json`, `VERSION` and similar) a minor bump and adds `-dev` (=> `5.1.0-dev`) again -Run the following command (make sure to replace the version below with what is listed inside `package.json`). +Run the following command (make sure to replace the version below with what is listed inside `package.json`) in case of release from the `master`: - coho prepare-platform-release-branch --version 5.0.0 -r android + coho prepare-platform-release-branch --version 7.2.0 -r android + +or in case of release from another release branch: + + coho prepare-platform-release-branch --version 7.1.1 -r android -b 7.1.x Then ensure commits look okay on both branches - coho repo-status -r android -b master -b 5.0.x + coho repo-status -r android -b master -b 7.1.x + +or use git tool to verify manually. ## Testing