Skip to content

Commit 11a25bc

Browse files
HyukjinKwonrgbkrk
authored andcommitted
Release 0.5.3
1 parent 9a32a6d commit 11a25bc

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.5.3
2+
=====
3+
- Fixed a crash in Python 2 when serializing non-hashable instancemethods of built-in
4+
types ([issue #144](https://github.com/cloudpipe/cloudpickle/issues/144)).
5+
6+
- itertools objects can also pickled
7+
([PR #156](https://github.com/cloudpipe/cloudpickle/pull/156)).
8+
9+
- `logging.RootLogger` can be also pickled
10+
([PR #160](https://github.com/cloudpipe/cloudpickle/pull/160)).
11+
112
0.5.2
213
=====
314

@@ -20,6 +31,12 @@
2031

2132
- Use `pickle.HIGHEST_PROTOCOL` by default.
2233

34+
0.4.4
35+
=====
36+
37+
- `logging.RootLogger` can be also pickled
38+
([PR #160](https://github.com/cloudpipe/cloudpickle/pull/160)).
39+
2340
0.4.3
2441
=====
2542

cloudpickle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from cloudpickle.cloudpickle import *
44

5-
__version__ = '0.5.2'
5+
__version__ = '0.5.3'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
dist = setup(
1010
name='cloudpickle',
11-
version='0.5.2',
11+
version='0.5.3',
1212
description='Extended pickling support for Python objects',
1313
author='Cloudpipe',
1414
author_email='[email protected]',

0 commit comments

Comments
 (0)