We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76ce41e commit 78a2476Copy full SHA for 78a2476
3 files changed
CHANGES.txt
@@ -1,3 +1,6 @@
1
+v4.8.4
2
+* Disable urllib3 security warning only if not verifying server certs. (#102)
3
+
4
v4.8.3
5
* Do not verify server cert by default. (issue #97)
6
docs/conf.py
@@ -20,7 +20,7 @@
20
project = u'mixpanel'
21
copyright = u' 2021, Mixpanel, Inc.'
22
author = u'Mixpanel <dev@mixpanel.com>'
23
-version = release = '4.8.3'
+version = release = '4.8.4'
24
exclude_patterns = ['_build']
25
pygments_style = 'sphinx'
26
mixpanel/__init__.py
@@ -25,7 +25,7 @@
from six.moves import range
import urllib3
27
28
-__version__ = '4.8.3'
+__version__ = '4.8.4'
29
VERSION = __version__ # TODO: remove when bumping major version.
30
31
logger = logging.getLogger(__name__)
0 commit comments