Skip to content

Commit d0b920a

Browse files
authored
Merge pull request #14 from stefanofusai/docs-update-description
2 parents 38d90b6 + be26e30 commit d0b920a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# drf-haystack-search-filter
22

3-
A simple package to implement a [django-haystack](https://github.com/django-haystack/django-haystack) search filter in Django Rest Framework.
3+
A [django-haystack](https://github.com/django-haystack/django-haystack) search filter for Django Rest Framework.
44

55
## Installation
66

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "drf-haystack-search-filter"
7-
version = "1.1.0"
7+
version = "1.1.1"
88
authors = [{ "name" = "Stefano Fusai", "email" = "[email protected]" }]
9-
description = "A simple package to implement a django-haystack search filter in Django Rest Framework"
9+
description = "A django-haystack search filter for Django Rest Framework."
1010
readme = "README.md"
1111
requires-python = ">=3.12"
1212
dependencies = ["django", "django-haystack", "djangorestframework"]

src/drf_haystack_search_filter/filters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
class HaystackSearchFilter(SearchFilter):
13-
"""A simple search filter for Django Rest Framework that uses Django Haystack's search indexes.""" # noqa: E501
13+
"""A search filter for Django Rest Framework that uses Django Haystack's search indexes.""" # noqa: E501
1414

1515
def filter_queryset( # noqa: D102
1616
self, request: Request, queryset: QuerySet[T], view: APIView

0 commit comments

Comments
 (0)