From d9671bc4c7a44d100cb43edc31d90f330f4226f7 Mon Sep 17 00:00:00 2001 From: Jerome Leclanche Date: Tue, 30 Jun 2015 10:08:53 +0200 Subject: [PATCH] Release v1.3.0 --- CHANGELOG.rst | 14 ++++++++++++++ push_notifications/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1fd2a83a..b811abb0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,17 @@ +v1.3.0 (2015-06-30) +=================== +* BACKWARDS-INCOMPATIBLE: Drop support for Python<2.7 +* BACKWARDS-INCOMPATIBLE: Drop support for Django<1.8 +* NEW FEATURE: Added a Django Rest Framework API. Requires DRF>=3.0. +* APNS: Add support for setting the ca_certs file with new APNS_CA_CERTIFICATES setting +* GCM: Deactivate GCMDevices when their notifications cause NotRegistered or InvalidRegistration +* GCM: Indiscriminately handle all keyword arguments in gcm_send_message and gcm_send_bulk_message +* GCM: Never fall back to json in gcm_send_message +* BUGFIX: Fixed migration issues from 1.2.0 upgrade. +* BUGFIX: Better detection of SQLite/GIS MySQL in various checks +* BUGFIX: Assorted Python 3 bugfixes +* BUGFIX: Fix display of device_id in admin + v1.2.1 (2015-04-11) =================== * APNS, GCM: Add a db_index to the device_id field diff --git a/push_notifications/__init__.py b/push_notifications/__init__.py index 6999fcc1..002abb37 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.1" +__version__ = "1.3.0" class NotificationError(Exception):