diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dfa4bdb..01145760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Update version of psutil, ipython (@luzfcb) - Update version of gunicorn (@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] ### Changed diff --git a/setup.py b/setup.py index 00438c8d..fb6c9a31 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ except ImportError: # 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. -version = "1.8.6" +version = "1.8.7" if sys.argv[-1] == 'tag': os.system("git tag -a %s -m 'version %s'" % (version, version))