Skip to content

Commit d9671bc

Browse files
committed
Release v1.3.0
1 parent 886b386 commit d9671bc

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
v1.3.0 (2015-06-30)
2+
===================
3+
* BACKWARDS-INCOMPATIBLE: Drop support for Python<2.7
4+
* BACKWARDS-INCOMPATIBLE: Drop support for Django<1.8
5+
* NEW FEATURE: Added a Django Rest Framework API. Requires DRF>=3.0.
6+
* APNS: Add support for setting the ca_certs file with new APNS_CA_CERTIFICATES setting
7+
* GCM: Deactivate GCMDevices when their notifications cause NotRegistered or InvalidRegistration
8+
* GCM: Indiscriminately handle all keyword arguments in gcm_send_message and gcm_send_bulk_message
9+
* GCM: Never fall back to json in gcm_send_message
10+
* BUGFIX: Fixed migration issues from 1.2.0 upgrade.
11+
* BUGFIX: Better detection of SQLite/GIS MySQL in various checks
12+
* BUGFIX: Assorted Python 3 bugfixes
13+
* BUGFIX: Fix display of device_id in admin
14+
115
v1.2.1 (2015-04-11)
216
===================
317
* APNS, GCM: Add a db_index to the device_id field

push_notifications/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
__author__ = "Jerome Leclanche"
33
__email__ = "[email protected]"
4-
__version__ = "1.2.1"
4+
__version__ = "1.3.0"
55

66

77
class NotificationError(Exception):

0 commit comments

Comments
 (0)