diff --git a/RELEASING.md b/RELEASING.md index 5e22fb7..45da843 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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