diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ca2ce9d2..6c90d4f3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,14 @@
All enhancements and patches to cookiecutter-django will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [2016-02-07]
+### Changed
+- In `users` app, use Django 1.9 `LoginRequiredMixin` instead of django-braces implementation (@yunti)
+- Update native OS libraries of Hitch Test, because [unixpackage](https://github.com/unixpackage/unixpackage) now supports multiple versions of same Linux distribution (@crdoconnor)
+- Update AngularJS version to 1.5.0 (@luzfcb)
+- Update version of wheel, Pillow, django_coverage_plugin (@luzfcb)
+- Update version of Hitch tests dependencies: decorator, hitchselenium, ipython, ptyprocess, selenium (@luzfcb)
+
## [2016-02-01]
### Changed
- Update version of Django and django-floppyforms (@luzfcb)
diff --git a/{{cookiecutter.repo_name}}/requirements/base.txt b/{{cookiecutter.repo_name}}/requirements/base.txt
index 7e54c7265..8c40dd5d5 100644
--- a/{{cookiecutter.repo_name}}/requirements/base.txt
+++ b/{{cookiecutter.repo_name}}/requirements/base.txt
@@ -3,7 +3,7 @@
# like Pillow and psycopg2
# See http://bitly.com/wheel-building-fails-CPython-35
# Verified bug on Python 3.5.1
-wheel==0.26.0
+wheel==0.29.0
{%- endif %}
# Bleeding edge Django
@@ -26,7 +26,7 @@ django-floppyforms==1.6.1
django-model-utils==2.4
# Images
-Pillow==3.1.0
+Pillow==3.1.1
# For user registration, either via email or social
# Well-built with regular release cycles!
diff --git a/{{cookiecutter.repo_name}}/requirements/local.txt b/{{cookiecutter.repo_name}}/requirements/local.txt
index 26c0804ed..3253fdffa 100644
--- a/{{cookiecutter.repo_name}}/requirements/local.txt
+++ b/{{cookiecutter.repo_name}}/requirements/local.txt
@@ -1,7 +1,7 @@
# Local development dependencies go here
-r base.txt
coverage==4.0.3
-django_coverage_plugin==1.2.1
+django_coverage_plugin==1.2.2
Sphinx
django-extensions==1.6.1
Werkzeug==0.11.3
diff --git a/{{cookiecutter.repo_name}}/requirements/test.txt b/{{cookiecutter.repo_name}}/requirements/test.txt
index 56b31ce0a..948a040b5 100644
--- a/{{cookiecutter.repo_name}}/requirements/test.txt
+++ b/{{cookiecutter.repo_name}}/requirements/test.txt
@@ -8,7 +8,7 @@ psycopg2==2.6.1
{%- endif %}
coverage==4.0.3
-django_coverage_plugin==1.2.1
+django_coverage_plugin==1.2.2
flake8==2.5.2
django-test-plus==1.0.11
factory_boy==2.6.0
diff --git a/{{cookiecutter.repo_name}}/tests/hitchreqs.txt b/{{cookiecutter.repo_name}}/tests/hitchreqs.txt
index 7da9941d2..219304faf 100644
--- a/{{cookiecutter.repo_name}}/tests/hitchreqs.txt
+++ b/{{cookiecutter.repo_name}}/tests/hitchreqs.txt
@@ -1,19 +1,19 @@
click==6.2
colorama==0.3.6
-decorator==4.0.6
+decorator==4.0.7
docopt==0.6.2
faketime==0.9.6.3
hitchcron==0.2
hitchpostgres==0.7.0
hitchpython==0.5.3
hitchredis==0.4.6
-hitchselenium==0.5.0
+hitchselenium==0.5.1
hitchserve==0.4.8
hitchsmtp==0.2.1
hitchsystem==0.1.2
hitchtest==0.9.6
humanize==0.5.1
-ipython==4.0.3
+ipython==4.1.1
ipython-genutils==0.1.0
Jinja2==2.8
MarkupSafe==0.23
@@ -22,14 +22,14 @@ patool==1.12
pexpect==4.0.1
pickleshare==0.6
psutil==3.4.2
-ptyprocess==0.5
+ptyprocess==0.5.1
pykwalify==1.5.0
python-build==0.2.12
python-dateutil==2.4.2
pyuv==1.2.0
PyYAML==3.11
requests==2.9.1
-selenium==2.50.1
+selenium==2.51.1
simplegeneric==0.8.1
six==1.10.0
tblib==1.2.0
diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/base.html
index 75fec9fa5..8113478c8 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 %}