Updated Release Process (markdown)

Tom Wilkie
2016-03-03 09:37:38 +00:00
parent 79a6c1fee7
commit 852e1cca9e
+4 -2
@@ -26,7 +26,9 @@ First, get the latest tools.
## Create a release branch
`$ git checkout -b release-0.1.0`
`$ git checkout -b release-0.1`
NB don't include patch versions in the branch name - successive patch versions for a given minor will be released of the same branch.
## Update the CHANGELOG and test
@@ -55,7 +57,7 @@ Only proceed from here once you have a few LGTMs.
```
$ git tag -a -m "Release v0.1.0" v0.1.0
$ git push --tags origin release-0.1.0
$ git push --tags origin release-0.1
$ git tag -a -f -m "Release v0.1.0" latest_release v0.1.0
$ git push -f git@github.com:weaveworks/scope latest_release
```