Merge pull request #59 from nephila/feature/django_17_deps
Use south 1.0.1 to ease migration pain
This commit is contained in:
commit
003be58ffe
4 changed files with 9 additions and 3 deletions
|
@ -30,8 +30,6 @@ matrix:
|
||||||
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
||||||
|
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- python: 2.7
|
|
||||||
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
|
||||||
- python: 3.3
|
- python: 3.3
|
||||||
env: DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
env: DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
||||||
- python: 3.3
|
- python: 3.3
|
||||||
|
|
|
@ -17,6 +17,7 @@ History
|
||||||
toolbar items are removed from the toolbar in the post detail view to avoid
|
toolbar items are removed from the toolbar in the post detail view to avoid
|
||||||
confusings page meta / tags with post ones
|
confusings page meta / tags with post ones
|
||||||
* Plugin API changed to filter out posts according to the request.
|
* Plugin API changed to filter out posts according to the request.
|
||||||
|
* Django 1.7 support
|
||||||
|
|
||||||
0.2.0 (2014-09-24)
|
0.2.0 (2014-09-24)
|
||||||
++++++++++++++++++
|
++++++++++++++++++
|
||||||
|
|
|
@ -30,6 +30,7 @@ Supported Django versions:
|
||||||
|
|
||||||
* Django 1.5
|
* Django 1.5
|
||||||
* Django 1.6
|
* Django 1.6
|
||||||
|
* Django 1.7
|
||||||
|
|
||||||
Supported django CMS versions:
|
Supported django CMS versions:
|
||||||
|
|
||||||
|
@ -46,6 +47,11 @@ Supported django CMS versions:
|
||||||
argument. Templates has been changed to use a context variable
|
argument. Templates has been changed to use a context variable
|
||||||
instead. Please update your plugin templates accordingly.
|
instead. Please update your plugin templates accordingly.
|
||||||
|
|
||||||
|
.. warning:: To ease migration to version 0.3, djangocms-blog depends on south
|
||||||
|
even on Django 1.7; while this is unnecessary for Dajngo 1.7, it
|
||||||
|
makes transition to version 0.3 painless. Hard dependency will be
|
||||||
|
removed in 0.5.
|
||||||
|
|
||||||
|
|
||||||
Quickstart
|
Quickstart
|
||||||
----------
|
----------
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -49,6 +49,7 @@ setup(
|
||||||
'cmsplugin-filer',
|
'cmsplugin-filer',
|
||||||
'django-meta>=0.2',
|
'django-meta>=0.2',
|
||||||
'django-meta-mixin>=0.1.1',
|
'django-meta-mixin>=0.1.1',
|
||||||
|
'south>=1.0.1',
|
||||||
],
|
],
|
||||||
license="BSD",
|
license="BSD",
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
Loading…
Add table
Reference in a new issue