Removed versionadded/changed annotations for 1.10.

This commit is contained in:
Tim Graham 2017-01-02 10:25:57 -05:00
parent 401c5b2e42
commit e27e4c0339
57 changed files with 0 additions and 562 deletions

View file

@ -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

View file

@ -80,8 +80,6 @@ run the query ``CREATE EXTENSION IF NOT EXISTS hstore;``.
.. class:: TrigramExtension()
.. versionadded:: 1.10
Installs the ``pg_trgm`` extension.
``UnaccentExtension``

View file

@ -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.