Bump version 1.2

This commit is contained in:
Yang.Y 2016-06-17 11:19:47 +08:00
parent 9f3e0105c2
commit dca99e959e
2 changed files with 10 additions and 2 deletions

View file

@ -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 <https://github.com/justquick/django-activity-stream>`_ v0.4.3

View file

@ -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'