update version of django in setup.py

This commit is contained in:
Fabio C. Barrioneuvo da Luz 2015-11-25 16:29:53 -03:00
parent 5610d4a7c1
commit 252d005e77
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Update version of psutil, ipython (@luzfcb) - Update version of psutil, ipython (@luzfcb)
- Update version of gunicorn (@audreyr) - Update version of gunicorn (@audreyr)
- Remove debugging tools from non-generated part of cookiecutter-django, since those are personal prefs (@audreyr) - Remove debugging tools from non-generated part of cookiecutter-django, since those are personal prefs (@audreyr)
- Update version of Django in setup.py (@luzfcb)
## [2015-11-24] ## [2015-11-24]
### Changed ### Changed

View File

@ -11,7 +11,7 @@ except ImportError:
# Our version ALWAYS matches the version of Django we support # Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag. # If Django has a new release, we branch, tag, then update this setting after the tag.
version = "1.8.6" version = "1.8.7"
if sys.argv[-1] == 'tag': if sys.argv[-1] == 'tag':
os.system("git tag -a %s -m 'version %s'" % (version, version)) os.system("git tag -a %s -m 'version %s'" % (version, version))