diff --git a/HISTORY b/HISTORY index d9726e29..9d25fddf 100644 --- a/HISTORY +++ b/HISTORY @@ -1,7 +1,15 @@ -Changelog for django-filer-cmsplugins -===================================== +CHANGELOG +========= -1.1 (unreleased) +1.1.1 (2016-06-22) +------------------ + +* Updated requirements for Django Filer to >= 1.2.0 +* Fixed an issue with thumbnail options migrations + + +1.1.0 (2016-06-21) +------------------ * Move ThumbnailOption to filer * Move migrations to proper layout @@ -9,6 +17,7 @@ Changelog for django-filer-cmsplugins * Add swappable dependency to initial migration * Add img-responsive class if automatic scaling * Add center image alignment +* Implements AttributesField 1.0.1 (2016-01-14) ------------------ diff --git a/cmsplugin_filer_file/__init__.py b/cmsplugin_filer_file/__init__.py index 6849410a..a82b376d 100644 --- a/cmsplugin_filer_file/__init__.py +++ b/cmsplugin_filer_file/__init__.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/setup.py b/setup.py index 0e87b915..1f634ea4 100644 --- a/setup.py +++ b/setup.py @@ -23,10 +23,11 @@ ], install_requires=[ "Django >= 1.8", + "django-filer >= 1.2.0", + "django-cms >= 3.1", "django-sekizai >= 0.4.2", "easy_thumbnails >= 1.0", - "django-filer >= 1.0.0", "django-appconf", "djangocms-attributes-field>=0.0.2", ],