update requirements and CHANGELOG

This commit is contained in:
Fabio C. Barrioneuvo da Luz 2016-02-07 02:26:40 -03:00
parent 2cdf8bdb70
commit b5f82d41f2
6 changed files with 18 additions and 10 deletions

View File

@ -2,6 +2,14 @@
All enhancements and patches to cookiecutter-django will be documented in this file. All enhancements and patches to cookiecutter-django will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). 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] ## [2016-02-01]
### Changed ### Changed
- Update version of Django and django-floppyforms (@luzfcb) - Update version of Django and django-floppyforms (@luzfcb)

View File

@ -3,7 +3,7 @@
# like Pillow and psycopg2 # like Pillow and psycopg2
# See http://bitly.com/wheel-building-fails-CPython-35 # See http://bitly.com/wheel-building-fails-CPython-35
# Verified bug on Python 3.5.1 # Verified bug on Python 3.5.1
wheel==0.26.0 wheel==0.29.0
{%- endif %} {%- endif %}
# Bleeding edge Django # Bleeding edge Django
@ -26,7 +26,7 @@ django-floppyforms==1.6.1
django-model-utils==2.4 django-model-utils==2.4
# Images # Images
Pillow==3.1.0 Pillow==3.1.1
# For user registration, either via email or social # For user registration, either via email or social
# Well-built with regular release cycles! # Well-built with regular release cycles!

View File

@ -1,7 +1,7 @@
# Local development dependencies go here # Local development dependencies go here
-r base.txt -r base.txt
coverage==4.0.3 coverage==4.0.3
django_coverage_plugin==1.2.1 django_coverage_plugin==1.2.2
Sphinx Sphinx
django-extensions==1.6.1 django-extensions==1.6.1
Werkzeug==0.11.3 Werkzeug==0.11.3

View File

@ -8,7 +8,7 @@ psycopg2==2.6.1
{%- endif %} {%- endif %}
coverage==4.0.3 coverage==4.0.3
django_coverage_plugin==1.2.1 django_coverage_plugin==1.2.2
flake8==2.5.2 flake8==2.5.2
django-test-plus==1.0.11 django-test-plus==1.0.11
factory_boy==2.6.0 factory_boy==2.6.0

View File

@ -1,19 +1,19 @@
click==6.2 click==6.2
colorama==0.3.6 colorama==0.3.6
decorator==4.0.6 decorator==4.0.7
docopt==0.6.2 docopt==0.6.2
faketime==0.9.6.3 faketime==0.9.6.3
hitchcron==0.2 hitchcron==0.2
hitchpostgres==0.7.0 hitchpostgres==0.7.0
hitchpython==0.5.3 hitchpython==0.5.3
hitchredis==0.4.6 hitchredis==0.4.6
hitchselenium==0.5.0 hitchselenium==0.5.1
hitchserve==0.4.8 hitchserve==0.4.8
hitchsmtp==0.2.1 hitchsmtp==0.2.1
hitchsystem==0.1.2 hitchsystem==0.1.2
hitchtest==0.9.6 hitchtest==0.9.6
humanize==0.5.1 humanize==0.5.1
ipython==4.0.3 ipython==4.1.1
ipython-genutils==0.1.0 ipython-genutils==0.1.0
Jinja2==2.8 Jinja2==2.8
MarkupSafe==0.23 MarkupSafe==0.23
@ -22,14 +22,14 @@ patool==1.12
pexpect==4.0.1 pexpect==4.0.1
pickleshare==0.6 pickleshare==0.6
psutil==3.4.2 psutil==3.4.2
ptyprocess==0.5 ptyprocess==0.5.1
pykwalify==1.5.0 pykwalify==1.5.0
python-build==0.2.12 python-build==0.2.12
python-dateutil==2.4.2 python-dateutil==2.4.2
pyuv==1.2.0 pyuv==1.2.0
PyYAML==3.11 PyYAML==3.11
requests==2.9.1 requests==2.9.1
selenium==2.50.1 selenium==2.51.1
simplegeneric==0.8.1 simplegeneric==0.8.1
six==1.10.0 six==1.10.0
tblib==1.2.0 tblib==1.2.0

View File

@ -24,7 +24,7 @@
{% endblock %} {% endblock %}
{% block angular %} {% block angular %}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>
{% endblock %} {% endblock %}
</head> </head>