Skip to content

Commit

Permalink
change release logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed May 16, 2020
1 parent 841178f commit ebbd913
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions shop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
Release logic:
1. Increase version number in __version__ (below)
2. Check that all changes have been documented in docs/changelog.rst
3. git add shop/__init__.py docs/changelog.rst
4. git commit -m 'Bump to {new version}'
5. git push
6. assure that all tests pass on https://travis-ci.org/awesto/django-shop
7. git tag {new version}
8. git push --tags
8. python setup.py sdist
10. twine upload dist/django-shop-{new version}.tar.gz
3. In setup.py, assure that `classifiers` and `install_requires` reflect the latest versions.
4. git add shop/__init__.py docs/changelog.rst setup.py
5. git commit -m 'Bump to {new version}'
6. git push
7. assure that all tests pass on https://travis-ci.org/awesto/django-shop
8. git tag {new version}
9. git push --tags
10. python setup.py sdist
11. twine upload dist/django-shop-{new version}.tar.gz
"""
__version__ = '1.2'

Expand Down

0 comments on commit ebbd913

Please sign in to comment.