Skip to content

Commit 868d74b

Browse files
committed
Bump version to 7.0
1 parent d432156 commit 868d74b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Changelog.rst

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

6+
7.0.0 (dev)
7+
-----------
8+
69
6.4.0 (2019-04-26)
710
------------------
811

@@ -12,8 +15,6 @@ Changelog
1215
* adding ``auto_date_histogram`` aggregation
1316
* Do not change data in place when (de)serializing
1417

15-
16-
1718
6.3.1 (2018-12-05)
1819
------------------
1920

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
from .faceted_search import *
1212
from .wrappers import *
1313

14-
VERSION = (6, 4, 0)
14+
VERSION = (7, 0, 0, 'dev')
1515
__version__ = VERSION
1616
__versionstr__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os.path import join, dirname
33
from setuptools import setup, find_packages
44

5-
VERSION = (6, 4, 0)
5+
VERSION = (7, 0, 0, 'dev')
66
__version__ = VERSION
77
__versionstr__ = '.'.join(map(str, VERSION))
88

0 commit comments

Comments
 (0)