Skip to content

Commit

Permalink
REL: Release v0.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Sanderson authored and rgbkrk committed Oct 26, 2017
1 parent 2da4c24 commit 2fe1105
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
0.4.1
=====

- Fixed a crash when pickling dynamic classes whose `__dict__` attribute was
defined as a [`property`](https://docs.python.org/3/library/functions.html#property).
Most notably, this affected dynamic [namedtuples](https://docs.python.org/2/library/collections.html#namedtuple-factory-function-for-tuples-with-named-fields)
in Python 2. (https://github.com/cloudpipe/cloudpickle/pull/113)
- Cloudpickle now preserves the `__module__` attribute of functions (https://github.com/cloudpipe/cloudpickle/pull/118/).
- Fixed a crash when pickling modules that don't have a `__package__` attribute (https://github.com/cloudpipe/cloudpickle/pull/116).

0.4.0
=====

Expand Down
2 changes: 1 addition & 1 deletion cloudpickle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from cloudpickle.cloudpickle import *

__version__ = '0.4.0'
__version__ = '0.4.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

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

0 comments on commit 2fe1105

Please sign in to comment.