Merge pull request #395 from pydanny/update-requirements

update requirements
This commit is contained in:
Fábio C. Barrionuevo da Luz 2015-11-04 23:30:04 -03:00
commit c5fcb4895b
8 changed files with 20 additions and 14 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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