diff --git a/README.rst b/README.rst index 2554ecb..495f067 100644 --- a/README.rst +++ b/README.rst @@ -20,4 +20,10 @@ The source code and issue tracker can be found on Github: https://github.com/jezdez/django-dbtemplates +Compatibility Roadmap +--------------------- + +Since 1.3.2 ``dbtemplates`` dropped support for Django < 1.4 +Since 1.4 will be supported only Django >= 1.7, please freeze your requirements on specific version of dbtemplates ! + .. _template loader: http://docs.djangoproject.com/en/dev/ref/templates/api/#loader-types diff --git a/dbtemplates/__init__.py b/dbtemplates/__init__.py index 437285b..974a8ff 100644 --- a/dbtemplates/__init__.py +++ b/dbtemplates/__init__.py @@ -1,2 +1,2 @@ # following PEP 386 -__version__ = "1.3.1" +__version__ = "1.3.2" diff --git a/docs/changelog.txt b/docs/changelog.txt index 43a9f28..545c9dc 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -1,6 +1,14 @@ Changelog ========= +v1.3.2 (2015-06-15) +------------------- + +* support for Django 1.8 (not full, but usable) +* support for RedactorJS + +thanks for contrib - @eculver, @kmooney, @volksman + v1.3.1 (2012-05-23) -------------------