Update release docs

This commit is contained in:
Hugo 2018-06-09 09:43:41 +03:00
parent c6b080d578
commit efd123004a

View file

@ -1,10 +1,10 @@
# Release Checklist
* [ ] 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`:
* [ ] Remove `.dev0` suffix from the version:
```bash
git checkout master
edit pylast/__init__.py setup.py
edit pylast/version.py
```
* [ ] Commit and tag with the version number:
```bash
@ -28,10 +28,10 @@ git push --tags
* [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new
* Tag: Pick existing tag "2.1.0"
* Title: "Release 2.1.0"
* [ ] Increment version and append `.dev0` in `pylast/__init__.py` and `setup.py`:
* [ ] Increment version and append `.dev0`:
```bash
git checkout master
edit pylast/__init__.py setup.py
edit pylast/version.py
```
* [ ] Commit and push:
```bash