diff --git a/maintaining.md b/maintaining.md index c854879af..5245ab3b0 100644 --- a/maintaining.md +++ b/maintaining.md @@ -18,7 +18,7 @@ We strongly recommend installing an [XO editor plugin](https://github.com/sindre - Leave the `Release title` field blank - Write release notes - Click `Save draft` -- Change `version` [here](https://github.com/wulkano/kap/blob/master/app/package.json#L4) to the new version and use the version number as the commit title (Example: `2.0.0`) +- Change `version` [here](https://github.com/wulkano/kap/blob/master/package.json#L4) to the new version and use the version number as the commit title (Example: `2.0.0`) - CircleCI will now build the app and add the binaries to the release - When CircleCI has attached the binaries to the release, click `Edit` on the release, and then click `Publish release` @@ -27,7 +27,7 @@ We strongly recommend installing an [XO editor plugin](https://github.com/sindre - Check out the `beta` branch: `git checkout beta` - Rebase from the `master` branch: `git pull --rebase origin master` -- Change the `version` number in `app/package.json` +- Change the `version` number in `package.json` - Amend the "Beta build customizations" commit: `git add . && git commit --amend` - Force push to the `beta` branch: `git push --force` - Tag a release with the version number in package.json and push it: `git tag -a "v2.0.0-beta.3" -m "v2.0.0-beta.3" && git push --follow-tags`