From 5dcc12fc59ff91a72afbf0e13e8001eb97d24391 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Mon, 11 Mar 2019 20:18:27 +0100 Subject: [PATCH] Release 0.8.4 --- AUTHORS.rst | 3 +++ HISTORY.rst | 7 +++++++ djangocms_page_meta/__init__.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index eea1cfd..10b2670 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -21,10 +21,13 @@ Contributors * Leonardo Cavallucci * Marco Federighi * Mario Colombo +* Mark Walker +* Matas Dailyda * nastya * Ryan Stalbow * Sergei Maertens * Tadas Dailyda * Vadim Sikora * Venelin Stoykov +* Vladimir Kuvandjiev * Zan Anderle diff --git a/HISTORY.rst b/HISTORY.rst index 9dc45b0..785600d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ History ******* +0.8.4 (2019-03-11) +================== + +* Add Django 2.0 and Django 2.1 compatibility +* Add django CMS 3.6 compatibility +* Fixes a crash on creating new pagetype with djangocms 3.5.2 + 0.8.3 (2018-04-07) ================== diff --git a/djangocms_page_meta/__init__.py b/djangocms_page_meta/__init__.py index 587459a..243475c 100644 --- a/djangocms_page_meta/__init__.py +++ b/djangocms_page_meta/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals -__version__ = '0.8.3.post1' +__version__ = '0.8.4' __author__ = 'Iacopo Spalletti ' default_app_config = 'djangocms_page_meta.apps.PageMetaConfig'