Merge pull request #59 from nephila/feature/django_17_deps

Use south 1.0.1 to ease migration pain
This commit is contained in:
Iacopo Spalletti 2014-12-07 00:54:30 +01:00
commit 003be58ffe
4 changed files with 9 additions and 3 deletions

View file

@ -30,8 +30,6 @@ matrix:
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
allow_failures:
- python: 2.7
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
- python: 3.3
env: DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
- python: 3.3
@ -43,4 +41,4 @@ matrix:
- python: 3.4
env: DJANGO='django>=1.6,<1.7' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
- python: 3.4
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

View file

@ -17,6 +17,7 @@ History
toolbar items are removed from the toolbar in the post detail view to avoid
confusings page meta / tags with post ones
* Plugin API changed to filter out posts according to the request.
* Django 1.7 support
0.2.0 (2014-09-24)
++++++++++++++++++

View file

@ -30,6 +30,7 @@ Supported Django versions:
* Django 1.5
* Django 1.6
* Django 1.7
Supported django CMS versions:
@ -46,6 +47,11 @@ Supported django CMS versions:
argument. Templates has been changed to use a context variable
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
----------

View file

@ -49,6 +49,7 @@ setup(
'cmsplugin-filer',
'django-meta>=0.2',
'django-meta-mixin>=0.1.1',
'south>=1.0.1',
],
license="BSD",
zip_safe=False,