diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2019-06-26 06:00:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 06:00:40 +0800 |
commit | 76e7c3bd1f63cd75f111e4505ff6460fbb7525db (patch) | |
tree | 81cd6c07f93b01977f7395732c6b93b404ac0fb1 | |
parent | 5e3b99f4dd28d0b2d3a881a05f63cf839960adc2 (diff) | |
parent | ee049aee87f8d4a96705a9a03b90fa4a4ce89be7 (diff) | |
download | tangerine-wallet-browser-76e7c3bd1f63cd75f111e4505ff6460fbb7525db.tar.gz tangerine-wallet-browser-76e7c3bd1f63cd75f111e4505ff6460fbb7525db.tar.zst tangerine-wallet-browser-76e7c3bd1f63cd75f111e4505ff6460fbb7525db.zip |
Merge pull request #6589 from MetaMask/DocumentHotfixProtocol
Document hotfix protocol
-rw-r--r-- | docs/publishing.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/publishing.md b/docs/publishing.md index 392e20955..8d50e6869 100644 --- a/docs/publishing.md +++ b/docs/publishing.md @@ -42,3 +42,16 @@ With each pull request, the @MetaMaskBot will comment with a build of that new p 4. Publish to [Opera store](https://addons.opera.com/en/extensions/details/metamask/). 5. Post on [Github releases](https://github.com/MetaMask/metamask-extension/releases) page. 6. Run the `npm run announce` script, and post that announcement in our public places. + +## Hotfix Differences + +Our `develop` branch is usually not yet fully tested for quality assurance, and so should be treated as if it is in an unstable state. + +For this reason, when an urgent change is needed in production, its pull request should: + +- Describe it as a hotfix. +- Use a hotfix tag. +- Should be proposed against the `master` branch. + +The version and changelog bump should then be made off the `master` branch, and then merged to `develop` to bring the two branches back into sync. Further time can be saved by incorporating the version/changelog bump into the PR against `master`, since we rely on @MetaMaskBot to run tests before merging. + |