Skip to content

Commit 51defea

Browse files
committed
Version bump
1 parent 647461f commit 51defea

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Changelog.rst

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

6-
2.2.0 (dev)
7-
-----------
6+
2.2.0 (2016-01-05)
7+
------------------
88

99
* adding additional options for ssh - ``ssl_assert_hostname`` and
1010
``ssl_assert_fingerprint`` to the default connection class
11+
* fix sniffing
1112

1213
2.1.0 (2015-10-19)
1314
------------------

docs/conf.py

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

0 commit comments

Comments
 (0)