Skip to content

Commit

Permalink
Merge pull request #430 from nephila/feature/django111
Browse files Browse the repository at this point in the history
Django 1.11 support
  • Loading branch information
yakky authored Feb 22, 2018
2 parents d669742 + 2734abd commit 0fc5927
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ env:
- TOXENV='pep8'
- TOXENV='isort'
- TOXENV='docs'
- DJANGO='django111' CMS='cms35'
- DJANGO='django111' CMS='cms34'
- DJANGO='django110' CMS='cms35'
- DJANGO='django110' CMS='cms34'
- DJANGO='django19' CMS='cms35'
Expand Down Expand Up @@ -64,6 +66,10 @@ matrix:
env: TOXENV='pep8'
- python: 3.5
env: TOXENV='isort'
- python: 2.7
env: DJANGO='django110' CMS='cms35'
- python: 2.7
env: DJANGO='django110' CMS='cms34'
- python: 2.7
env: DJANGO='django19' CMS='cms35'
- python: 2.7
Expand All @@ -72,6 +78,10 @@ matrix:
env: DJANGO='django19' CMS='cms33'
- python: 2.7
env: DJANGO='django19' CMS='cms32'
- python: 3.5
env: DJANGO='django110' CMS='cms35'
- python: 3.5
env: DJANGO='django110' CMS='cms34'
- python: 3.5
env: DJANGO='django19' CMS='cms35'
- python: 3.5
Expand All @@ -80,6 +90,10 @@ matrix:
env: DJANGO='django19' CMS='cms33'
- python: 3.5
env: DJANGO='django19' CMS='cms32'
- python: 3.4
env: DJANGO='django110' CMS='cms35'
- python: 3.4
env: DJANGO='django110' CMS='cms34'
- python: 3.4
env: DJANGO='django19' CMS='cms35'
- python: 3.4
Expand Down
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ History
0.9.1 (unreleased)
******************

* Added Django 1.11 support

******************
0.9.0 (2018-02-20)
******************
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Supported Django versions:
* Django 1.8
* Django 1.9
* Django 1.10
* Django 1.11

Supported django CMS versions:

Expand Down
2 changes: 1 addition & 1 deletion djangocms_blog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

__author__ = 'Iacopo Spalletti'
__email__ = '[email protected]'
__version__ = '0.9.0'
__version__ = '1.0.0.dev1'

default_app_config = 'djangocms_blog.apps.BlogAppConfig'
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,18 @@ deps =
django110: Django>=1.10,<1.11
django110: django-mptt>=0.8
django110: https://github.com/divio/django-filer/archive/develop.zip
django111: Django>=1.10,<1.11
django111: django-mptt>=0.8
django111: https://github.com/divio/django-filer/archive/develop.zip
django111: django-appdata>=0.2.0
django111: https://github.com/aldryn/aldryn-apphooks-config/archive/feature/django11.zip
cms32: https://github.com/divio/django-cms/archive/release/3.2.x.zip
cms32: djangocms-text-ckeditor<3.0
cms33: https://github.com/divio/django-cms/archive/release/3.3.x.zip
cms33: djangocms-text-ckeditor>=3.0
cms34: https://github.com/divio/django-cms/archive/release/3.4.x.zip
cms34: djangocms-text-ckeditor>=3.2
cms35: https://github.com/divio/django-cms/archive/develop.zip
cms35: https://github.com/divio/django-cms/archive/release/3.5.x.zip
cms35: djangocms-text-ckeditor>=3.5
channels<2.0
https://github.com/nephila/django-knocker/archive/master.zip?0.1.1
Expand Down

0 comments on commit 0fc5927

Please sign in to comment.