Skip to content

Commit

Permalink
version bump for 7.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Aug 22, 2019
1 parent a40b7c7 commit 4244f88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Changelog
7.1.0 (dev)
-----------

7.0.4 (2019-08-22)
-----------
* Fix wheel distribution

7.0.3 (2019-08-21)
-----------
* remove sleep in retries
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# flake8: noqa
from __future__ import absolute_import

VERSION = (7, 0, 3)
VERSION = (7, 0, 4)
__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 = (7, 0, 3)
VERSION = (7, 0, 4)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit 4244f88

Please sign in to comment.