Skip to content

Commit

Permalink
version bump for 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Mar 31, 2017
1 parent fe897eb commit 2f62f9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

5.3.0 (2017-03-30)
------------------

Compatibility with elasticsearch 5.3

5.2.0 (2017-02-12)
------------------

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

VERSION = (5, 2, 0)
VERSION = (5, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages
import sys

VERSION = (5, 2, 0)
VERSION = (5, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit 2f62f9e

Please sign in to comment.