summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-02 10:25:57 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commite27e4c03399f610e0db1fb9b881095d762fda2b7 (patch)
tree11bd3fc4e762fad072ef29c0498daab3cba49554 /docs/ref/contrib/postgres
parent401c5b2e42bf9134d9221f446765dd0777306f0b (diff)
Removed versionadded/changed annotations for 1.10.
Diffstat (limited to 'docs/ref/contrib/postgres')
-rw-r--r--docs/ref/contrib/postgres/lookups.txt2
-rw-r--r--docs/ref/contrib/postgres/operations.txt2
-rw-r--r--docs/ref/contrib/postgres/search.txt6
3 files changed, 0 insertions, 10 deletions
diff --git a/docs/ref/contrib/postgres/lookups.txt b/docs/ref/contrib/postgres/lookups.txt
index 0176dba547..02ba6716de 100644
--- a/docs/ref/contrib/postgres/lookups.txt
+++ b/docs/ref/contrib/postgres/lookups.txt
@@ -7,8 +7,6 @@ Trigram similarity
.. fieldlookup:: trigram_similar
-.. versionadded:: 1.10
-
The ``trigram_similar`` lookup allows you to perform trigram lookups,
measuring the number of trigrams (three consecutive characters) shared, using a
dedicated PostgreSQL extension. A trigram lookup is given an expression and
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index eecac388a6..90cd007121 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -80,8 +80,6 @@ run the query ``CREATE EXTENSION IF NOT EXISTS hstore;``.
.. class:: TrigramExtension()
- .. versionadded:: 1.10
-
Installs the ``pg_trgm`` extension.
``UnaccentExtension``
diff --git a/docs/ref/contrib/postgres/search.txt b/docs/ref/contrib/postgres/search.txt
index 6d3022116a..e3f4f7296d 100644
--- a/docs/ref/contrib/postgres/search.txt
+++ b/docs/ref/contrib/postgres/search.txt
@@ -2,8 +2,6 @@
Full text search
================
-.. versionadded:: 1.10
-
The database functions in the ``django.contrib.postgres.search`` module ease
the use of PostgreSQL's `full text search engine
<https://www.postgresql.org/docs/current/static/textsearch.html>`_.
@@ -203,8 +201,6 @@ operation.
.. class:: TrigramSimilarity(expression, string, **extra)
-.. versionadded:: 1.10
-
Accepts a field name or expression, and a string or expression. Returns the
trigram similarity between the two arguments.
@@ -224,8 +220,6 @@ Usage example::
.. class:: TrigramDistance(expression, string, **extra)
-.. versionadded:: 1.10
-
Accepts a field name or expression, and a string or expression. Returns the
trigram distance between the two arguments.