Skip to content

Commit 10b4b48

Browse files
committed
release v0.4.0
1 parent 3c00179 commit 10b4b48

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGES.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
0.4.0
2+
=====
3+
4+
* Fix functions with empty cells
5+
* Allow pickling Logger objects
6+
* Fix crash when pickling dynamic class cycles
7+
* Ignore "None" mdoules added to sys.modules
8+
* Support WeakSets and ABCMeta instances
9+
* Remove non-standard `__transient__` support
10+
* Catch exception from `pickle.whichmodule()`
11+
12+
113
0.3.1
214
=====
315

416
* Fix version information and ship a changelog
517

6-
0.3.0
18+
0.3.0
719
=====
820

921
* Import submodules accessed by pickled functions

cloudpickle/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from cloudpickle.cloudpickle import *
44

5-
__version__ = '0.3.1'
5+
__version__ = '0.4.0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

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

0 commit comments

Comments
 (0)