diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 1cac7ed..a3af3f4 100644
a
|
b
|
Miscellaneous
|
1405 | 1405 | method that is registered with the check framework. If you have an existing |
1406 | 1406 | method called ``check()`` on one of these objects, you will need to rename it. |
1407 | 1407 | |
| 1408 | * As noted above in the "Cache" section of "Minor Features", defining the |
| 1409 | :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the |
| 1410 | :setting:`CACHES` setting as ``None`` will set the cache keys as |
| 1411 | "non-expiring". Previously, with the memcache backend, a |
| 1412 | :setting:`TIMEOUT <CACHES-TIMEOUT>` of ``0`` would set non-expiring keys, |
| 1413 | but this was inconsistent with the set-and-expire (i.e. no caching) behavior |
| 1414 | of ``set("key", "value", timeout=None)``. If you want non-expiring keys, |
| 1415 | please update your settings to use ``None`` instead of ``0`` as the latter |
| 1416 | now designates set-and-expire in the settings as well. |
| 1417 | |
1408 | 1418 | .. _deprecated-features-1.7: |
1409 | 1419 | |
1410 | 1420 | Features deprecated in 1.7 |