diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0aa7966..ea911d9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ Changelog for django-agnocomplete ================================= -master (unreleased) -================== +0.14.0 (2018-10-16) +=================== * Add a way in UrlProxy widget to filter value with python (#104) * Provide a FieldMixin in order to use with UrlProxy Autocomplete for efficient value validation (#107) diff --git a/docs/url-proxy.rst b/docs/url-proxy.rst index ac8918b..981677a 100644 --- a/docs/url-proxy.rst +++ b/docs/url-proxy.rst @@ -105,11 +105,12 @@ or, if things are going more complicated: ) -If you need to skip fields -++++++++++++++++++++++++++ +If you need to skip items ++++++++++++++++++++++++++ +.. versionadded:: 0.14.0 -Sometimes, passing in a query may not provide sufficient filtering to meet requirements. In such cases, :class:`agnocomplete.exceptions.SkipItem` can be raised to prevent a given item from appearing in the final result. Please note, however, that this is not a very efficient approach, and so should only be used as a last resort. It is generally preferable to apply ``server-side`` filtering if at all possible. +Sometimes, passing in a query may not provide sufficient filtering to meet requirements. In such cases, :class:`agnocomplete.exceptions.SkipItem` can be raised to prevent a given item from appearing in the final result. Please note, however, that this is not a very efficient approach, and so should only be used as a last resort. It is generally preferable to apply **server-side** filtering if possible. .. code-block:: python diff --git a/setup.py b/setup.py index b3010dc..00bd3ab 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-agnocomplete', - version='0.14.0.dev0', + version='0.14.0', packages=['agnocomplete'], include_package_data=True, description='Frontend-agnostic Django autocomplete utilities',