From ab4011eae6c980f14c04d480ed97344d45440488 Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Wed, 2 Mar 2022 00:57:35 +0530 Subject: [PATCH] Release 1.7.0 --- CHANGELOG.rst | 7 +++++++ notifications/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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