Merge pull request #482 from pydanny/update-requirements

update requirements and CHANGELOG
This commit is contained in:
Fábio C. Barrionuevo da Luz 2016-02-07 02:55:20 -03:00
commit 8826620bd4
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.
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)

View File

@ -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!

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -24,7 +24,7 @@
{% endblock %}
{% 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 %}
</head>