Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobord committed Oct 16, 2018
1 parent b160c4c commit d073117
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 4 additions & 3 deletions docs/url-proxy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d073117

Please sign in to comment.