Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Jun 30, 2015
1 parent 886b386 commit d9671bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion push_notifications/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

__author__ = "Jerome Leclanche"
__email__ = "jerome@leclan.ch"
__version__ = "1.2.1"
__version__ = "1.3.0"


class NotificationError(Exception):
Expand Down

0 comments on commit d9671bc

Please sign in to comment.