Skip to content

Commit b9c293d

Browse files
committed
Bump version for 6.0.0 release
1 parent c3b94d8 commit b9c293d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Changelog.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
Changelog
44
=========
55

6-
6.0.0 (dev)
7-
-----------
6+
6.0.0 (2018-01-01)
7+
------------------
88

9-
Release compatible with elasticsearch 6.0, changes include:
9+
Backwards incompatible release compatible with elasticsearch 6.0, changes
10+
include:
1011

1112
* use ``doc`` as default ``DocType`` name, this change includes:
1213
* ``DocType._doc_type.matches`` method is now used to determine which

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
from .analysis import analyzer, token_filter, char_filter, tokenizer
1010
from .faceted_search import *
1111

12-
VERSION = (6, 0, 0, 'dev')
12+
VERSION = (6, 0, 0)
1313
__version__ = VERSION
1414
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os.path import join, dirname
44
from setuptools import setup, find_packages
55

6-
VERSION = (6, 0, 0, 'dev')
6+
VERSION = (6, 0, 0)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)