mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
2.0 development branch
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
VERSION = (1, 5, 0, 'dev') # Remove the 'dev' component in release branches
|
VERSION = (2, 0, 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:]])
|
||||||
|
|||||||
@@ -7,12 +7,13 @@ Among other things, this means that minor updates
|
|||||||
and breaking changes will always increment the
|
and breaking changes will always increment the
|
||||||
major version number (1.x to 2.0).
|
major version number (1.x to 2.0).
|
||||||
|
|
||||||
Upcoming Changes in Djrill 2.0
|
|
||||||
------------------------------
|
|
||||||
|
|
||||||
Djrill 2.0 is under development and will include some breaking changes.
|
Djrill 2.0 (in development)
|
||||||
Although the changes won't impact most Djrill users, the current
|
---------------------------
|
||||||
version of Djrill (1.4) will try to warn you if you use things
|
|
||||||
|
Djrill 2.0 is under development and includes some breaking changes.
|
||||||
|
Although the changes won't impact most Djrill users, the previous
|
||||||
|
version of Djrill (1.4) tries to warn you if you use things
|
||||||
that will change. (Warnings appear in the console when running Django
|
that will change. (Warnings appear in the console when running Django
|
||||||
in debug mode.)
|
in debug mode.)
|
||||||
|
|
||||||
@@ -66,8 +67,8 @@ with :exc:`djrill.MandrillAPIError`. Djrill 1.4 will report a
|
|||||||
DeprecationWarning if you are still importing DjrillBackendHTTPError.
|
DeprecationWarning if you are still importing DjrillBackendHTTPError.
|
||||||
|
|
||||||
|
|
||||||
Change Log
|
Older Releases
|
||||||
----------
|
--------------
|
||||||
|
|
||||||
Version 1.4:
|
Version 1.4:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user