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'