diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 746d573a..90033ee0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= + +1.7.0 +----- + +- Added support for Django 3.2 and Django 4.0 +- Fixed bug on IE11 for using ``forEach`` in notify.js + 1.6.0 ----- diff --git a/notifications/__init__.py b/notifications/__init__.py index 1c5f0090..55a47356 100644 --- a/notifications/__init__.py +++ b/notifications/__init__.py @@ -8,6 +8,6 @@ """ # PEP 386-compliant version number: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN] -__version__ = '1.6.0' +__version__ = '1.7.0' default_app_config = 'notifications.apps.Config' # pylint: disable=invalid-name