File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ v4.8.2
2
+ Bugfix release:
3
+ * Fix DeprecationWarning in urllib3 when using older argument name. (issue #93)
4
+ * Fix creation of urllib3.PoolManager under Python 2 with unicode_literals. (issue #94 - thanks, Hugo Arregui!)
5
+
1
6
v4.8.1
2
7
A compatibility bugfix -- 4.8.0 broke subclassing compatibility with some
3
8
other libraries.
Original file line number Diff line number Diff line change 20
20
project = u'mixpanel'
21
21
copyright = u' 2021, Mixpanel, Inc.'
22
22
author = u'Mixpanel <dev@mixpanel.com>'
23
- version = release = '4.8.1 '
23
+ version = release = '4.8.2 '
24
24
exclude_patterns = ['_build' ]
25
25
pygments_style = 'sphinx'
26
26
Original file line number Diff line number Diff line change 25
25
from six .moves import range
26
26
import urllib3
27
27
28
- __version__ = '4.8.1 '
28
+ __version__ = '4.8.2 '
29
29
VERSION = __version__ # TODO: remove when bumping major version.
30
30
31
31
logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments