Skip to content

Commit 6e3de80

Browse files
committed
Bumping the version to 1.1.0
1 parent daa4885 commit 6e3de80

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

Changelog.rst

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

6-
1.0.1 (dev)
7-
-----------
6+
1.1.0 (2014-07-02)
7+
------------------
8+
9+
Compatibility with newest Elasticsearch APIs.
10+
11+
* Test helpers - `ElasticsearchTestCase` and `get_test_client` for use in your
12+
tests
13+
* Python 3.2 compatibility
14+
* Use ``simplejson`` if installed instead of stdlib json library
15+
* Introducing a global `request_timeout` parameter for per-call timeout
16+
* Bug fixes
817

918
1.0.0 (2014-02-11)
1019
------------------

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.0.1'
53+
version = '1.1.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.0.1 (dev)'
55+
release = '1.1.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, 0, 1)
3+
VERSION = (1, 1, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

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

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

@@ -59,6 +59,7 @@
5959
"Programming Language :: Python :: 3",
6060
"Programming Language :: Python :: 3.2",
6161
"Programming Language :: Python :: 3.3",
62+
"Programming Language :: Python :: 3.4",
6263
"Programming Language :: Python :: Implementation :: CPython",
6364
"Programming Language :: Python :: Implementation :: PyPy",
6465
],

0 commit comments

Comments
 (0)