Update release checklist to remove develop branch

[CI skip]
This commit is contained in:
Hugo 2017-12-08 20:33:56 +02:00 committed by GitHub
parent 825432b77f
commit d3f6e65fa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
# Release Checklist # Release Checklist
* [ ] Get [master to the appropriate code release state](https://github.com/pylast/pylast/compare/master...develop?expand=1&title=Merge%20develop%20into%20master). [Travis CI](https://travis-ci.org/pylast/pylast) should be running cleanly for all merges to master. * [ ] Get master to the appropriate code release state. [Travis CI](https://travis-ci.org/pylast/pylast) should be running cleanly for all merges to master.
* [ ] Remove `.dev0` suffix from version in `pylast/__init__.py` and `setup.py` and commit: * [ ] Remove `.dev0` suffix from version in `pylast/__init__.py` and `setup.py` and commit:
```bash ```bash
git checkout master git checkout master
@ -33,9 +33,3 @@ git add pylast/__init__.py setup.py
git commit -m "Start new release cycle" git commit -m "Start new release cycle"
git push git push
``` ```
* [ ] Update develop branch from master:
```bash
git checkout develop
git merge master --ff-only
git push
```