diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-02-26 22:48:20 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-03-08 09:57:40 +0100 |
| commit | 210d0489c5daad56b806f8165f9fe09fb3c2a019 (patch) | |
| tree | f16c665e94669288fec0c3712a5639e9ad1ad1a7 /docs/internals/release-process.txt | |
| parent | 70ec4d776ef0e68960ccee21476b8654e9399f53 (diff) | |
Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings
Thanks Anssi Kääriäinen for the idea and Simon Charette for the
review.
Diffstat (limited to 'docs/internals/release-process.txt')
| -rw-r--r-- | docs/internals/release-process.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/internals/release-process.txt b/docs/internals/release-process.txt index d06dbac954..43d23717fc 100644 --- a/docs/internals/release-process.txt +++ b/docs/internals/release-process.txt @@ -58,18 +58,17 @@ security purposes, please see :doc:`our security policies <security>`. ``A.B+2``. So, for example, if we decided to start the deprecation of a function in - Django 1.5: + Django 1.7: - * Django 1.5 will contain a backwards-compatible replica of the function which - will raise a ``PendingDeprecationWarning``. This warning is silent by + * Django 1.7 will contain a backwards-compatible replica of the function which + will raise a ``RemovedInDjango19Warning``. This warning is silent by default; you can turn on display of these warnings with the ``-Wd`` option of Python. - * Django 1.6 will contain the backwards-compatible replica, but the warning - will be promoted to a full-fledged ``DeprecationWarning``. This warning is - *loud* by default, and will likely be quite annoying. + * Django 1.8 will still contain the backwards-compatible replica. This + warning becomes *loud* by default, and will likely be quite annoying. - * Django 1.7 will remove the feature outright. + * Django 1.9 will remove the feature outright. Micro release Micro releases (1.5.1, 1.6.2, 1.6.1, etc.) will be issued as needed, often to |
