diff --git a/RELEASING.md b/RELEASING.md index 2268db2..ee357bf 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -6,23 +6,22 @@ git checkout master edit pylast/__init__.py setup.py git add pylast/__init__.py setup.py -git commit -m "Release 1.5.0" +git commit -m "Release 1.8.0" ``` * [ ] Tag the last commit with the version number: ```bash -git tag -a 1.5.0 -m "Release 1.5.0" +git tag -a 1.8.0 -m "Release 1.8.0" ``` * [ ] Release on PyPI: ```bash -python setup.py register -python setup.py sdist --format=gztar upload +twine upload dist/pylast-1.8.0.tar.gz ``` * [ ] Check installation: `pip install -U pylast` * [ ] Push: `git push` * [ ] Push tags: `git push --tags` * [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new - * Tag: Pick existing tag "1.5.0" - * Title: "Release 1.5.0" + * Tag: Pick existing tag "1.8.0" + * Title: "Release 1.8.0" * [ ] Update develop branch from master: ```bash git checkout develop