Skip to content

Commit b8591fb

Browse files
committed
Bump version: 0.5.0 → 0.5.1
1 parent c1b6aa6 commit b8591fb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

HISTORY.rst

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
History
44
-------
55

6+
0.5.1 (2018-11-07)
7+
~~~~~~~~~~~~~~~~~~
8+
* Limit elastsearch-dsl to supported versions
9+
610
0.5.0 (2018-04-22)
711
~~~~~~~~~~~~~~~~~~
812
* Add Support for Elasticsearch 6 thanks to HansAdema

django_elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .indices import Index # noqa
55
from .fields import * # noqa
66

7-
__version__ = '0.5.0'
7+
__version__ = '0.5.1'
88

99

1010
def autodiscover():

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
commit = True
44
tag = True
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
except ImportError:
99
from distutils.core import setup
1010

11-
version = '0.5.0'
11+
version = '0.5.1'
1212

1313
if sys.argv[-1] == 'publish':
1414
try:

0 commit comments

Comments
 (0)