From 18145201e3afc135d385cd84aea51ef97f24e6d7 Mon Sep 17 00:00:00 2001 From: Pierre Glaser Date: Tue, 4 Jun 2019 18:26:51 +0200 Subject: [PATCH 1/2] MNT mention #273 improvements in the changelog --- CHANGES.md | 4 ++++ cloudpickle/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index f1c597160..750e52520 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,10 @@ but is no longer officially supported by cloudpickle) ([issue #276](https://github.com/cloudpipe/cloudpickle/pull/276)) +- Internal refactoring of the pickling logic to make the code more predictable. + This refactoring also yielded small performance improvements (~10%) + ([issue #273](https://github.com/cloudpipe/cloudpickle/pull/273)) + 1.1.1 ===== diff --git a/cloudpickle/__init__.py b/cloudpickle/__init__.py index 8e8d5deb8..1af671683 100644 --- a/cloudpickle/__init__.py +++ b/cloudpickle/__init__.py @@ -2,4 +2,4 @@ from cloudpickle.cloudpickle import * -__version__ = '1.1.1' +__version__ = '1.2.0.dev0' From bf26d9b7d5e8d225477173aa735ebc49764e0aff Mon Sep 17 00:00:00 2001 From: Pierre Glaser Date: Tue, 4 Jun 2019 18:39:45 +0200 Subject: [PATCH 2/2] MNT more specific entry --- CHANGES.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 750e52520..14d989501 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,8 +9,9 @@ but is no longer officially supported by cloudpickle) ([issue #276](https://github.com/cloudpipe/cloudpickle/pull/276)) -- Internal refactoring of the pickling logic to make the code more predictable. - This refactoring also yielded small performance improvements (~10%) +- Internal refactoring to proactively detect dynamic functions and classes when + pickling them. This refactoring also yields small performance improvements + when pickling dynamic classes (~10%) ([issue #273](https://github.com/cloudpipe/cloudpickle/pull/273)) 1.1.1