update versions and changelog to 7.x

This commit is contained in:
Nick Lang
2019-03-29 09:27:59 -06:00
parent 1afceba69b
commit f4c163dbc6
3 changed files with 34 additions and 41 deletions
+9 -9
View File
@@ -1,29 +1,29 @@
#flake8: noqa
# flake8: noqa
from __future__ import absolute_import
VERSION = (6, 3, 1)
VERSION = (7, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
__versionstr__ = ".".join(map(str, VERSION))
import logging
try: # Python 2.7+
from logging import NullHandler
except ImportError:
class NullHandler(logging.Handler):
def emit(self, record):
pass
import sys
logger = logging.getLogger('elasticsearch')
logger = logging.getLogger("elasticsearch")
logger.addHandler(logging.NullHandler())
from .client import Elasticsearch
from .transport import Transport
from .connection_pool import ConnectionPool, ConnectionSelector, \
RoundRobinSelector
from .connection_pool import ConnectionPool, ConnectionSelector, RoundRobinSelector
from .serializer import JSONSerializer
from .connection import Connection, RequestsHttpConnection, \
Urllib3HttpConnection
from .connection import Connection, RequestsHttpConnection, Urllib3HttpConnection
from .exceptions import *