From 8f3fb17af7fa8572076207e45f70c47df15c0c92 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sat, 20 Jan 2018 19:48:14 +0100 Subject: [PATCH] Release 0.9.0rc2i [ci skip] --- HISTORY.rst | 5 ++++- djangocms_blog/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 01d3ddb..0df4523 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -25,7 +25,10 @@ History * Moved template to easy_thumbnails_tags template tag. Require easy_thumbnails >= 2.4.1 * Made HTML description and title fields length configurable * Added meta representation for CategoryEntriesView - +* Generated valid slug in wizard if the given one is taken +* Fixed error in category filtering when loading the for via POST +* Returned 404 in AuthorEntriesView if author does not exists +* Returned 404 in CategoryEntriesView if category does not exists ******************* 0.8.13 (2017-07-25) diff --git a/djangocms_blog/__init__.py b/djangocms_blog/__init__.py index d8530f6..2f34ec6 100644 --- a/djangocms_blog/__init__.py +++ b/djangocms_blog/__init__.py @@ -3,6 +3,6 @@ from __future__ import absolute_import, print_function, unicode_literals __author__ = 'Iacopo Spalletti' __email__ = 'i.spalletti@nephila.it' -__version__ = '0.9.0rc1' +__version__ = '0.9.0rc2' default_app_config = 'djangocms_blog.apps.BlogAppConfig'