diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b4fca677..1fd2a83a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,15 @@ +v1.2.1 (2015-04-11) +=================== +* APNS, GCM: Add a db_index to the device_id field +* APNS: Use the native UUIDField on Django 1.8 +* APNS: Fix timeout handling on Python 3 +* APNS: Restore error checking on apns_send_bulk_message +* GCM: Expose the time_to_live argument in gcm_send_bulk_message +* GCM: Fix return value when gcm bulk is split in batches +* GCM: Improved error checking reliability +* GCM: Properly pass kwargs in GCMDeviceQuerySet.send_message() +* BUGFIX: Fix HexIntegerField for Django 1.3 + v1.2.0 (2014-10-07) =================== * BACKWARDS-INCOMPATIBLE: Added support for Django 1.7 migrations. South users will have to upgrade to South 1.0 or Django 1.7. diff --git a/push_notifications/__init__.py b/push_notifications/__init__.py index 003dc575..6999fcc1 100644 --- a/push_notifications/__init__.py +++ b/push_notifications/__init__.py @@ -1,7 +1,7 @@ __author__ = "Jerome Leclanche" __email__ = "jerome@leclan.ch" -__version__ = "1.2.0" +__version__ = "1.2.1" class NotificationError(Exception):