Skip to content

Commit d288a5a

Browse files
minor fix in search filter backend; change copyright year
1 parent 79a76bb commit d288a5a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+64
-50
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions

LICENSE_GPL2.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ the "copyright" line and a pointer to where the full notice is found.
292292

293293
django-elasticsearch-dsl-drf - Integrate Elasticsearch DSL with Django REST
294294
framework.
295-
Copyright (C) 2017 Artur Barseghyan
295+
Copyright (C) 2017-2018 Artur Barseghyan
296296

297297
This program is free software; you can redistribute it and/or modify
298298
it under the terms of the GNU General Public License as published by

LICENSE_LGPL_2.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ convey the exclusion of warranty; and each file should have at least the
472472

473473
django-elasticsearch-dsl-drf - Integrate Elasticsearch DSL with Django REST
474474
framework.
475-
Copyright (C) 2017 Artur Barseghyan
475+
Copyright (C) 2017-2018 Artur Barseghyan
476476

477477
This library is free software; you can redistribute it and/or
478478
modify it under the terms of the GNU Lesser General Public

docs/changelog.rst

Lines changed: 7 additions & 0 deletions

examples/simple/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h2 class="subheader">{% block page-sub-title %}For testing the performance{% en
5757
</div>
5858
<div class="medium-6 columns">
5959
<ul class="menu align-right">
60-
{#<li class="menu-text">Copyright © 2017 Artur Barseghyan</li>#}
60+
{#<li class="menu-text">Copyright © 2017-2018 Artur Barseghyan</li>#}
6161
</ul>
6262
</div>
6363
</div>

scripts/pycodestyle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22
reset
3-
pycodestyle src/django_elasticsearch_dsl_drf/
3+
pycodestyle src/django_elasticsearch_dsl_drf/ --exclude migrations,south_migrations

setup.py

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

33
from setuptools import find_packages, setup
44

5-
version = '0.6.2'
5+
version = '0.6.3'
66

77
DOCS_TRANSFORMATIONS = (
88
(

src/django_elasticsearch_dsl_drf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44

55
__title__ = 'django-elasticsearch-dsl-drf'
6-
__version__ = '0.6.2'
6+
__version__ = '0.6.3'
77
__author__ = 'Artur Barseghyan <[email protected]>'
8-
__copyright__ = '2017 Artur Barseghyan'
8+
__copyright__ = '2017-2018 Artur Barseghyan'
99
__license__ = 'GPL 2.0/LGPL 2.1'
1010
__all__ = ('default_app_config',)
1111

src/django_elasticsearch_dsl_drf/apps.py

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

77
__title__ = 'django_elasticsearch_dsl_drf.apps'
88
__author__ = 'Artur Barseghyan <[email protected]>'
9-
__copyright__ = '2017 Artur Barseghyan'
9+
__copyright__ = '2017-2018 Artur Barseghyan'
1010
__license__ = 'GPL 2.0/LGPL 2.1'
1111
__all__ = ('Config',)
1212

src/django_elasticsearch_dsl_drf/compat.py

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

1010
__title__ = 'django_elasticsearch_dsl_drf.compat'
1111
__author__ = 'Artur Barseghyan <[email protected]>'
12-
__copyright__ = '2017 Artur Barseghyan'
12+
__copyright__ = '2017-2018 Artur Barseghyan'
1313
__license__ = 'GPL 2.0/LGPL 2.1'
1414
__all__ = (
1515
'get_elasticsearch_version',

0 commit comments

Comments
 (0)