Skip to content

Commit 2fe1105

Browse files
Scott Sandersonrgbkrk
authored andcommitted
REL: Release v0.4.1.
1 parent 2da4c24 commit 2fe1105

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.4.1
2+
=====
3+
4+
- Fixed a crash when pickling dynamic classes whose `__dict__` attribute was
5+
defined as a [`property`](https://docs.python.org/3/library/functions.html#property).
6+
Most notably, this affected dynamic [namedtuples](https://docs.python.org/2/library/collections.html#namedtuple-factory-function-for-tuples-with-named-fields)
7+
in Python 2. (https://github.com/cloudpipe/cloudpickle/pull/113)
8+
- Cloudpickle now preserves the `__module__` attribute of functions (https://github.com/cloudpipe/cloudpickle/pull/118/).
9+
- Fixed a crash when pickling modules that don't have a `__package__` attribute (https://github.com/cloudpipe/cloudpickle/pull/116).
10+
111
0.4.0
212
=====
313

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.4.0'
5+
__version__ = '0.4.1'

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.4.0',
11+
version='0.4.1',
1212
description='Extended pickling support for Python objects',
1313
author='Cloudpipe',
1414
author_email='[email protected]',

0 commit comments

Comments
 (0)