Skip to content

Commit ca5686a

Browse files
committed
Release v1.2.0
1 parent 5800da5 commit ca5686a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
v1.2.0 (2014-10-07)
2+
===================
3+
* BACKWARDS-INCOMPATIBLE: Added support for Django 1.7 migrations. South users will have to upgrade to South 1.0 or Django 1.7.
4+
* APNS: APNS MAX_NOTIFICATION_SIZE is now a setting and its default has been increased to 2048
5+
* APNS: Always connect with TLSv1 instead of SSLv3
6+
* APNS: Implemented support for APNS Feedback Service
7+
* APNS: Support for optional "category" dict
8+
* GCM: Improved error handling in bulk mode
9+
* GCM: Added support for time_to_live parameter
10+
* BUGFIX: Fixed various issues relating HexIntegerField
11+
* BUGFIX: Fixed issues in the admin with custom user models
12+
113
v1.1.0 (2014-06-29)
214
===================
315
* BACKWARDS-INCOMPATIBLE: The arguments for device.send_message() have changed. See README.rst for details.

push_notifications/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
__author__ = "Jerome Leclanche"
33
__email__ = "jerome@leclan.ch"
4-
__version__ = "1.1.0"
4+
__version__ = "1.2.0"
55

66

77
class NotificationError(Exception):

0 commit comments

Comments
 (0)