mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
Close out 1.4 dev
Master is now 1.5.0-dev (to avoid accidents), but the 1.4 branch is expected to be the end of the 1.x line. 2.0 development will begin on a separate branch soon.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
VERSION = (1, 4, 0, 'dev') # Remove the 'dev' component in release branches
|
VERSION = (1, 5, 0, 'dev') # Remove the 'dev' component in release branches
|
||||||
__version__ = '.'.join([str(x) for x in VERSION[:3]]) # major.minor.patch
|
__version__ = '.'.join([str(x) for x in VERSION[:3]]) # major.minor.patch
|
||||||
if len(VERSION) > 3: # x.y.z-pre.release (note the hyphen)
|
if len(VERSION) > 3: # x.y.z-pre.release (note the hyphen)
|
||||||
__version__ += '-' + '.'.join([str(x) for x in VERSION[3:]])
|
__version__ += '-' + '.'.join([str(x) for x in VERSION[3:]])
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ DeprecationWarning if you are still importing DjrillBackendHTTPError.
|
|||||||
Change Log
|
Change Log
|
||||||
----------
|
----------
|
||||||
|
|
||||||
Version 1.4 (development):
|
Version 1.4:
|
||||||
|
|
||||||
* Django 1.8 support
|
* Django 1.8 support
|
||||||
* Support new Django 1.8 EmailMessage reply_to param.
|
* Support new Django 1.8 EmailMessage reply_to param.
|
||||||
|
|||||||
Reference in New Issue
Block a user