- Added support for Django 1.8.
- Django 1.6 is no longer officially supported.
- Removed features that will be removed with Django 1.9.
- Using the syncdb Django command is no longer recommended. Please use migrate instead.
- Removed South migrations in favor of Django migrations.
- Officially supported Django versions are now 1.6.8 and 1.7.1.
- Support for Python 3. Currently Python 2.7, 3.2, 3.3, and 3.4 are officially supported.
- Django 1.6 support, thanks Felipe Ćlvarez for this.
- Added example-project to show how to use
django-plugins. - Added possibility for
include_pluginsto specify more than one list of url patterns with possibility to customise inclusion url pattern. include_pluginsnow automatically providespluginargument to view functions.- Now it is possible to get plugin instance from plugon point like this:
MyPluginPoint.get_plugin('plugin-name').
- Improved
PluginPoint.get_model()method, now this method also checks if plugin is enabled.
- Fixed django-plugins setup.py, that was not installable.
- Fixed plugin fields introspection for south.
- Plugin points and plugins moved from
__init__.pytoplugin_points.pyandplugins.py - Improved documentation.
- First public release.