Skip to content

Commit d073117

Browse files
committed
v0.14.0
1 parent b160c4c commit d073117

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Changelog for django-agnocomplete
33
=================================
44

5-
master (unreleased)
6-
==================
5+
0.14.0 (2018-10-16)
6+
===================
77

88
* Add a way in UrlProxy widget to filter value with python (#104)
99
* Provide a FieldMixin in order to use with UrlProxy Autocomplete for efficient value validation (#107)

docs/url-proxy.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,12 @@ or, if things are going more complicated:
105105
)
106106
107107
108-
If you need to skip fields
109-
++++++++++++++++++++++++++
108+
If you need to skip items
109+
+++++++++++++++++++++++++
110110

111+
.. versionadded:: 0.14.0
111112

112-
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.
113+
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.
113114

114115
.. code-block:: python
115116

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='django-agnocomplete',
5-
version='0.14.0.dev0',
5+
version='0.14.0',
66
packages=['agnocomplete'],
77
include_package_data=True,
88
description='Frontend-agnostic Django autocomplete utilities',

0 commit comments

Comments
 (0)