diff --git a/CHANGELOG.md b/CHANGELOG.md
index b53483004..40d5fc1db 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
All enhancements and patches to cookiecutter-django will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [2015-11-04]
+### Changed
+- Update version of Django, cookiecutter, celery, coverage, django-mailgun, django-redis, factory_boy, flake8, pytest and pytz (@luzfcb)
+- Update AngularJS version to 1.4.7 (@luzfcb)
+- Update 'now' date in cookiecutter.json (@luzfcb)
+
## [2015-10-28]
### Changed
- Update deployment-on-heroku.rst for ADMIN_URL (@yunti)
diff --git a/cookiecutter.json b/cookiecutter.json
index f214fad19..64e433bad 100644
--- a/cookiecutter.json
+++ b/cookiecutter.json
@@ -7,7 +7,7 @@
"domain_name": "example.com",
"version": "0.1.0",
"timezone": "UTC",
- "now": "2015/09/30",
+ "now": "2015/11/04",
"year": "{{ cookiecutter.now[:4] }}",
"use_whitenoise": "y",
"use_celery": "n",
diff --git a/requirements.txt b/requirements.txt
index 2f2756096..b8ad0567c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
-cookiecutter==1.1.0
-flake8==2.4.1
+cookiecutter==1.2.1
+flake8==2.5.0
sh
# Debugging
@@ -9,7 +9,7 @@ ipython==4.0.0
# Testing
# -------------------------------------
-pytest==2.8.1
+pytest==2.8.2
git+git://github.com/mverteuil/pytest-ipdb.git
pep8==1.6.2
pyflakes==1.0.0
diff --git a/{{cookiecutter.repo_name}}/requirements/base.txt b/{{cookiecutter.repo_name}}/requirements/base.txt
index 1ebdac4b0..5f0a43ed0 100644
--- a/{{cookiecutter.repo_name}}/requirements/base.txt
+++ b/{{cookiecutter.repo_name}}/requirements/base.txt
@@ -1,5 +1,5 @@
# Bleeding edge Django
-django==1.8.5
+django==1.8.6
# Configuration
django-environ==0.4.0
@@ -37,14 +37,14 @@ unicode-slugify==0.1.3
django-autoslug==1.9.3
# Time zones support
-pytz==2015.6
+pytz==2015.7
# Redis support
-django-redis==4.2.0
+django-redis==4.3.0
redis>=2.10.0
{% if cookiecutter.use_celery == "y" %}
-celery==3.1.18
+celery==3.1.19
{% endif %}
# Your custom requirements go here
diff --git a/{{cookiecutter.repo_name}}/requirements/local.txt b/{{cookiecutter.repo_name}}/requirements/local.txt
index ea6663f89..71b6d44e8 100644
--- a/{{cookiecutter.repo_name}}/requirements/local.txt
+++ b/{{cookiecutter.repo_name}}/requirements/local.txt
@@ -1,6 +1,6 @@
# Local development dependencies go here
-r base.txt
-coverage==4.0.1
+coverage==4.0.2
Sphinx
django-extensions==1.5.7
Werkzeug==0.10.4
diff --git a/{{cookiecutter.repo_name}}/requirements/production.txt b/{{cookiecutter.repo_name}}/requirements/production.txt
index a4e069316..be1fc61bc 100644
--- a/{{cookiecutter.repo_name}}/requirements/production.txt
+++ b/{{cookiecutter.repo_name}}/requirements/production.txt
@@ -24,7 +24,7 @@ Collectfast==0.2.3
# Mailgun Support
# ---------------
-django-mailgun==0.7.2
+django-mailgun==0.8.0
{% if cookiecutter.use_sentry == "y" -%}
# Raven is the Sentry client
diff --git a/{{cookiecutter.repo_name}}/requirements/test.txt b/{{cookiecutter.repo_name}}/requirements/test.txt
index 2c8085fc5..6d70d4bc6 100644
--- a/{{cookiecutter.repo_name}}/requirements/test.txt
+++ b/{{cookiecutter.repo_name}}/requirements/test.txt
@@ -7,7 +7,7 @@
psycopg2==2.6.1
{%- endif %}
-coverage==4.0
-flake8==2.4.1
+coverage==4.0.2
+flake8==2.5.0
django-test-plus==1.0.9
-factory_boy==2.5.2
+factory_boy==2.6.0
diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html
index a30c03c08..519e002a0 100644
--- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html
+++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html
@@ -24,7 +24,7 @@
{% endblock %}
{% block angular %}
-
+
{% endblock %}