Skip to content

Commit 8536a35

Browse files
committed
Version bump
1 parent 7425d8e commit 8536a35

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Changelog
44
=========
55

6+
2.1.0 (2015-10-19)
7+
------------------
8+
9+
* move multiprocessing import inside parallel bulk for Google App Engine
10+
611
2.0.0 (2015-10-14)
712
------------------
813

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '2.0.0'
53+
version = '2.1.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '2.0.0'
55+
release = '2.1.0'
5656

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

elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
VERSION = (2, 0, 0)
3+
VERSION = (2, 1, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import os
66

7-
VERSION = (2, 0, 0)
7+
VERSION = (2, 1, 0)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))
1010

0 commit comments

Comments
 (0)