Skip to content

Commit

Permalink
Release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon authored and rgbkrk committed May 14, 2018
1 parent 9a32a6d commit 11a25bc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGES.md
@@ -1,3 +1,14 @@
0.5.3
=====
- Fixed a crash in Python 2 when serializing non-hashable instancemethods of built-in
types ([issue #144](https://github.com/cloudpipe/cloudpickle/issues/144)).

- itertools objects can also pickled
([PR #156](https://github.com/cloudpipe/cloudpickle/pull/156)).

- `logging.RootLogger` can be also pickled
([PR #160](https://github.com/cloudpipe/cloudpickle/pull/160)).

0.5.2
=====

Expand All @@ -20,6 +31,12 @@

- Use `pickle.HIGHEST_PROTOCOL` by default.

0.4.4
=====

- `logging.RootLogger` can be also pickled
([PR #160](https://github.com/cloudpipe/cloudpickle/pull/160)).

0.4.3
=====

Expand Down
2 changes: 1 addition & 1 deletion cloudpickle/__init__.py
Expand Up @@ -2,4 +2,4 @@

from cloudpickle.cloudpickle import *

__version__ = '0.5.2'
__version__ = '0.5.3'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@

dist = setup(
name='cloudpickle',
version='0.5.2',
version='0.5.3',
description='Extended pickling support for Python objects',
author='Cloudpipe',
author_email='cloudpipe@googlegroups.com',
Expand Down

0 comments on commit 11a25bc

Please sign in to comment.