diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77c8fd0..a464143 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +1.2 +----- + +- Django 1.9 template tag compatibility: due to ``register.simple_tag`` automatically espacing ``unsafe_html`` in Django 1.9, it is now recommended to use format_html (@ikkebr) +- Fixed parameter name error in README.rst: there is no to_fetch parameter, the correct name is fetch (@ikkebr) +- Add missing migration (@marcgibbons) +- Minor documentation correction (@tkwon, @zhang-z) +- Return updated count in QuerySet (@zhang-z) + 1.1 ----- @@ -91,4 +100,3 @@ Fix package descriptions and doc links. --- First version based on `django-activity-stream `_ v0.4.3 - diff --git a/notifications/__init__.py b/notifications/__init__.py index c4949bf..3fa1e19 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.1' +__version__ = '1.2' default_app_config = 'notifications.apps.Config'