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__)