From efd123004a955018172dfd4f52281bee81f53ea5 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sat, 9 Jun 2018 09:43:41 +0300 Subject: [PATCH] Update release docs --- RELEASING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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