From 37bd7ef17b66a0f2edc6482eab843c7b204b6d13 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Fri, 25 Mar 2022 17:42:32 +0000 Subject: [PATCH] 4.0.0 (#113) --- CHANGELOG.rst | 9 +++++++++ MANIFEST.in | 2 ++ djangocms_picture/__init__.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 98cc0ed..bf96264 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ Changelog ========= +4.0.0 (2022-03-25) +================== + +* Apply ``{% localize off %}`` on ```` element +* Dropped support for django 3.0 +* Dropped support for python 3.5 and 3.6 +* Added support for django 3.2 +* Added support for python 3.9 and 3.10 + 3.0.0 (2020-09-02) ================== diff --git a/MANIFEST.in b/MANIFEST.in index 8c42290..2c6e760 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,5 @@ include README.rst recursive-include djangocms_picture/templates * recursive-include djangocms_picture/locale * recursive-exclude * *.py[co] +recursive-include tests *.py +recursive-include tests *.txt diff --git a/djangocms_picture/__init__.py b/djangocms_picture/__init__.py index 4eb28e3..d6497a8 100644 --- a/djangocms_picture/__init__.py +++ b/djangocms_picture/__init__.py @@ -1 +1 @@ -__version__ = '3.0.0' +__version__ = '4.0.0'