summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/custom-lookups.txt5
-rw-r--r--docs/howto/custom-management-commands.txt6
2 files changed, 0 insertions, 11 deletions
diff --git a/docs/howto/custom-lookups.txt b/docs/howto/custom-lookups.txt
index 1e73d329e7..7504997ed5 100644
--- a/docs/howto/custom-lookups.txt
+++ b/docs/howto/custom-lookups.txt
@@ -148,11 +148,6 @@ And on databases that support distinct on fields (such as PostgreSQL),
SELECT ... DISTINCT ON ABS("experiments"."change")
-.. versionchanged:: 2.1
-
- Ordering and distinct support as described in the last two paragraphs was
- added.
-
When looking for which lookups are allowable after the ``Transform`` has been
applied, Django uses the ``output_field`` attribute. We didn't need to specify
this here as it didn't change, but supposing we were applying ``AbsoluteValue``
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index d547bd97e2..aeee00016a 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -144,12 +144,6 @@ decorator on your :meth:`~BaseCommand.handle` method::
Since translation deactivation requires access to configured settings, the
decorator can't be used for commands that work without configured settings.
-.. versionchanged:: 2.1
-
- The ``@no_translations`` decorator is new. In older versions, translations
- are deactivated before running a command unless the command's
- ``leave_locale_alone`` attribute (now removed) is set to ``True``.
-
Testing
=======