Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Dec 13, 2015
1 parent 179ef46 commit 9c59e71
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.4.0 (2015-12-13)
===================
* BACKWARDS-INCOMPATIBLE: Drop support for Python<3.4
* DJANGO: Support Django 1.9
* GCM: Handle canonical IDs
* GCM: Allow full range of GCMDevice.device_id values
* GCM: Do not allow duplicate registration_ids
* DRF: Work around empty boolean defaults issue (django-rest-framework#1101)
* BUGFIX: Do not throw GCMError in bulk messages from the admin
* BUGFIX: Avoid generating an extra migration on Python 3
* BUGFIX: Only send in bulk to active devices
* BUGFIX: Display models correctly in the admin on both Python 2 and 3


v1.3.1 (2015-06-30)
===================
This is an errata release.
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.3.1"
__version__ = "1.4.0"


class NotificationError(Exception):
Expand Down

2 comments on commit 9c59e71

@nourspace
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just so I'm not confused anymore, dropping the support for Python < 3.4 does not mean it is also dropped for 2.7 or is it?
Thanks

@jleclanche
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh, I should have been clearer in those release notes but yes python 2.7 is still supported. The version that is no longer supported is 3.3.

Please sign in to comment.