From 78a2476767c6b6b176f097f61052ac4f78fcd6cb Mon Sep 17 00:00:00 2001 From: David Grant Date: Mon, 14 Jun 2021 09:46:54 -0700 Subject: [PATCH] version bump --- 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 6c3cb5b..1e6b8a8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +v4.8.4 +* Disable urllib3 security warning only if not verifying server certs. (#102) + v4.8.3 * Do not verify server cert by default. (issue #97) diff --git a/docs/conf.py b/docs/conf.py index 58d5286..1fdef45 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.3' +version = release = '4.8.4' exclude_patterns = ['_build'] pygments_style = 'sphinx' diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py index b270b14..361f20c 100644 --- a/mixpanel/__init__.py +++ b/mixpanel/__init__.py @@ -25,7 +25,7 @@ from six.moves import range import urllib3 -__version__ = '4.8.3' +__version__ = '4.8.4' VERSION = __version__ # TODO: remove when bumping major version. logger = logging.getLogger(__name__)