summaryrefslogtreecommitdiff
path: root/docs/ref/validators.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-05 15:07:12 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-09-10 12:01:00 +0200
commit416c584cabd62a13985f1569ccf019c8b351f0a5 (patch)
treec1ecd8351300b1ddd8ad1bb79a374affd9e38108 /docs/ref/validators.txt
parent32796826bb7bc5f6cdd9e8bd69be1c9eaa1e6cff (diff)
Removed versionadded/changed annotations for 2.2.
Diffstat (limited to 'docs/ref/validators.txt')
-rw-r--r--docs/ref/validators.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/ref/validators.txt b/docs/ref/validators.txt
index b6a233014d..4fd2a37cbc 100644
--- a/docs/ref/validators.txt
+++ b/docs/ref/validators.txt
@@ -239,10 +239,6 @@ to, or in lieu of custom ``field.clean()`` methods.
``'max_value'`` if ``value`` is greater than ``limit_value``, which may be
a callable.
- .. versionchanged:: 2.2
-
- ``limit_value`` can now be a callable.
-
``MinValueValidator``
---------------------
@@ -252,10 +248,6 @@ to, or in lieu of custom ``field.clean()`` methods.
``'min_value'`` if ``value`` is less than ``limit_value``, which may be a
callable.
- .. versionchanged:: 2.2
-
- ``limit_value`` can now be a callable.
-
``MaxLengthValidator``
----------------------
@@ -265,10 +257,6 @@ to, or in lieu of custom ``field.clean()`` methods.
``'max_length'`` if the length of ``value`` is greater than
``limit_value``, which may be a callable.
- .. versionchanged:: 2.2
-
- ``limit_value`` can now be a callable.
-
``MinLengthValidator``
----------------------
@@ -278,10 +266,6 @@ to, or in lieu of custom ``field.clean()`` methods.
``'min_length'`` if the length of ``value`` is less than ``limit_value``,
which may be a callable.
- .. versionchanged:: 2.2
-
- ``limit_value`` can now be a callable.
-
``DecimalValidator``
--------------------