summaryrefslogtreecommitdiff
path: root/docs/topics/db
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-05-17 10:16:32 -0400
committerTim Graham <timograham@gmail.com>2018-05-17 11:00:10 -0400
commit7543ab1f8dcb20dbbdf6a41eace95fc47c8dcaa3 (patch)
tree98e0f0cbec43f45ea36c09cafb97385bca028a9f /docs/topics/db
parent1cbd3d7874a4887fa2a6d7ef582defc388429b97 (diff)
Removed versionadded/changed annotations for 2.0.
Diffstat (limited to 'docs/topics/db')
-rw-r--r--docs/topics/db/aggregation.txt4
-rw-r--r--docs/topics/db/instrumentation.txt2
-rw-r--r--docs/topics/db/sql.txt4
3 files changed, 0 insertions, 10 deletions
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt
index 91a9b4fa3c..15af14542a 100644
--- a/docs/topics/db/aggregation.txt
+++ b/docs/topics/db/aggregation.txt
@@ -368,10 +368,6 @@ Each ``Author`` in the result set will have the ``num_books`` and
rows. The aggregation ``filter`` argument is only useful when using two or
more aggregations over the same relations with different conditionals.
-.. versionchanged:: 2.0
-
- The ``filter`` argument was added to aggregates.
-
Order of ``annotate()`` and ``filter()`` clauses
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/docs/topics/db/instrumentation.txt b/docs/topics/db/instrumentation.txt
index 9578c1224b..529347094f 100644
--- a/docs/topics/db/instrumentation.txt
+++ b/docs/topics/db/instrumentation.txt
@@ -2,8 +2,6 @@
Database instrumentation
========================
-.. versionadded:: 2.0
-
To help you understand and control the queries issued by your code, Django
provides a hook for installing wrapper functions around the execution of
database queries. For example, wrappers can count queries, measure query
diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt
index 39a54e4239..7f01c32c74 100644
--- a/docs/topics/db/sql.txt
+++ b/docs/topics/db/sql.txt
@@ -372,7 +372,3 @@ Calling stored procedures
with connection.cursor() as cursor:
cursor.callproc('test_procedure', [1, 'test'])
-
- .. versionchanged:: 2.0
-
- The ``kparams`` argument was added.