diff --git a/HISTORY.rst b/HISTORY.rst index 7bbeb6ea..e9c2e0e5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,12 @@ History ======= +******************* +0.8.12 (2017-03-11) +******************* + +* Fixed migrations on Django 1.10 + ******************* 0.8.11 (2017-03-04) ******************* diff --git a/djangocms_blog/__init__.py b/djangocms_blog/__init__.py index 03570911..d347092a 100644 --- a/djangocms_blog/__init__.py +++ b/djangocms_blog/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- __author__ = 'Iacopo Spalletti' __email__ = 'i.spalletti@nephila.it' -__version__ = '0.8.11' +__version__ = '0.8.12' default_app_config = 'djangocms_blog.apps.BlogAppConfig'