Skip to content

Commit 3ae1caf

Browse files
author
David Grant
committed
4.8.2 release changes.
1 parent f74238b commit 3ae1caf

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Diff for: CHANGES.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
v4.8.1
27
A compatibility bugfix -- 4.8.0 broke subclassing compatibility with some
38
other libraries.

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = u'mixpanel'
2121
copyright = u' 2021, Mixpanel, Inc.'
2222
author = u'Mixpanel <[email protected]>'
23-
version = release = '4.8.1'
23+
version = release = '4.8.2'
2424
exclude_patterns = ['_build']
2525
pygments_style = 'sphinx'
2626

Diff for: mixpanel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from six.moves import range
2626
import urllib3
2727

28-
__version__ = '4.8.1'
28+
__version__ = '4.8.2'
2929
VERSION = __version__ # TODO: remove when bumping major version.
3030

3131
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)