Skip to content

Commit f774553

Browse files
committed
Version bump
1 parent 85d045d commit f774553

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Changelog.rst

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

6-
2.1.0 (dev)
7-
-----------
6+
2.1.0 (2016-06-29)
7+
------------------
88
* ``inner_hits`` are now also wrapped in ``Response``
99
* ``+`` operator is deprecated, ``.query()`` now uses ``&`` to combine queries
10+
* added ``mget`` method to ``DocType``
11+
* fixed validation for "empty" values like ``''`` and ``[]``
1012

1113
2.0.0 (2016-02-18)
1214
------------------

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
#
5252

5353
# The short X.Y version.
54-
version = '2.0.0'
54+
version = '2.1.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.0.0'
56+
release = '2.1.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

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 = (2, 0, 0)
12+
VERSION = (2, 1, 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 = (2, 0, 0)
6+
VERSION = (2, 1, 0)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)