Skip to content

Commit

Permalink
Bump to version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Apr 30, 2020
1 parent 63f855a commit 98ae22b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
Changelog for django-SHOP
=========================

1.1.4
=====
* Fix rendering bug in Product Gallery plugin.


1.1.3
=====
* Add South African Rand to currencies.
Expand Down
20 changes: 9 additions & 11 deletions shop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,17 @@
See PEP 386 (http://www.python.org/dev/peps/pep-0386/)
Release logic:
1. Remove ".dev" from __version__ (below)
2. git add shop/__init__.py
3. git commit -m 'Bump to <version>'
4. git tag <version>
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 push --tags
8. python setup.py sdist upload
9. bump the version, append ".dev" to __version__
10. git add shop/__init__.py
11. git commit -m 'Start with <version>'
12. git push
7. git tag {new version}
8. git push --tags
8. python setup.py sdist
10. twine upload dist/django-shop-{new version}.tar.gz
"""
__version__ = '1.1.3'
__version__ = '1.1.4'

default_app_config = 'shop.apps.ShopConfig'

0 comments on commit 98ae22b

Please sign in to comment.