From 0937b3b91a98ac6700bc40b0aff2d2d67bc390a8 Mon Sep 17 00:00:00 2001 From: David Grant Date: Fri, 9 Apr 2021 15:19:23 -0700 Subject: [PATCH] release changes --- CHANGES.txt | 3 +++ docs/conf.py | 2 +- mixpanel/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 99b1584..6c3cb5b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +v4.8.3 +* Do not verify server cert by default. (issue #97) + v4.8.2 Bugfix release: * Fix DeprecationWarning in urllib3 when using older argument name. (issue #93) diff --git a/docs/conf.py b/docs/conf.py index 22889ed..58d5286 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ project = u'mixpanel' copyright = u' 2021, Mixpanel, Inc.' author = u'Mixpanel ' -version = release = '4.8.2' +version = release = '4.8.3' exclude_patterns = ['_build'] pygments_style = 'sphinx' diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py index bb72d12..391c8eb 100644 --- a/mixpanel/__init__.py +++ b/mixpanel/__init__.py @@ -25,7 +25,7 @@ from six.moves import range import urllib3 -__version__ = '4.8.2' +__version__ = '4.8.3' VERSION = __version__ # TODO: remove when bumping major version. logger = logging.getLogger(__name__)