Skip to content

Commit 639aa93

Browse files
committed
1.2.0 release
1 parent 00b6212 commit 639aa93

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

Changelog.rst

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

6-
1.2.0 (dev)
7-
-----------
6+
1.2.0 (2014-08-03)
7+
------------------
8+
9+
Compatibility with newest (1.3) Elasticsearch APIs.
10+
11+
* Filter out master-only nodes when sniffing
12+
* Improved docs and error messages
13+
14+
1.1.1 (2014-07-04)
15+
------------------
16+
17+
Bugfix release fixing escaping issues with `request_timeout`.
818

919
1.1.0 (2014-07-02)
1020
------------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.2.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.2.0 (dev)'
55+
release = '1.2.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, 2, 0, 'dev')
3+
VERSION = (1, 2, 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, 2, 0, 'dev')
7+
VERSION = (1, 2, 0)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))
1010

0 commit comments

Comments
 (0)