Skip to content

Commit af86fa8

Browse files
committed
2.0 version bump
1 parent 926ab52 commit af86fa8

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Changelog.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33
Changelog
44
=========
55

6-
1.8.0
7-
-----
6+
2.0.0 (2015-10-14)
7+
------------------
8+
9+
* Elasticsearch 2.0 compatibility release
10+
11+
1.8.0 (2015-10-14)
12+
------------------
813

914
* removed thrift and memcached connections, if you wish to continue using
1015
those, extract the classes and use them separately.

docs/conf.py

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

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

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import os
66

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

0 commit comments

Comments
 (0)