From 35f798556d6ebf0ef0a3249d05966e86b3852ab3 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Sun, 1 Aug 2021 11:54:04 +0200 Subject: [PATCH 1/4] Preparing release 2.0.0 --- CHANGES.md | 14 ++++++-------- cloudpickle/__init__.py | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e7ed612f3..caf46c225 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,18 +1,16 @@ -1.7.0 (in development) -====================== - -dev -=== +2.0.0 +===== - Python 3.5 is no longer supported. -- Support for registering modules to be serialised by value. This will - allow for code defined in local modules to be serialised and executed - remotely without those local modules installed on the remote machine. +- Support for registering modules to be serialised by value. This allows code + defined in local modules to be serialised and executed remotely without those + local modules installed on the remote machine. ([PR #417](https://github.com/cloudpipe/cloudpickle/pull/417)) - Fix a side effect altering dynamic modules at pickling time. ([PR #426](https://github.com/cloudpipe/cloudpickle/pull/426)) + - Support for pickling type annotations on Python 3.10 as per [PEP 563]( https://www.python.org/dev/peps/pep-0563/) ([PR #400](https://github.com/cloudpipe/cloudpickle/pull/400)) diff --git a/cloudpickle/__init__.py b/cloudpickle/__init__.py index 27c3e3d7b..afb073af6 100644 --- a/cloudpickle/__init__.py +++ b/cloudpickle/__init__.py @@ -8,4 +8,4 @@ # expose their Pickler subclass at top-level under the "Pickler" name. Pickler = CloudPickler -__version__ = '1.7.0dev0' +__version__ = '2.0.0' From 8d96190e98defd91c3e304d2fba7881696ed01cc Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Sun, 1 Aug 2021 12:00:49 +0200 Subject: [PATCH 2/4] Trigger downstream CI From df2d6c3671fc8844bd3c733600f30b3f3952e23f Mon Sep 17 00:00:00 2001 From: Pierre Glaser Date: Wed, 8 Sep 2021 19:30:53 +0100 Subject: [PATCH 3/4] CI trigger From 0cd4f41e8263168e764bbde00a8dc38e45e7da86 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Fri, 10 Sep 2021 11:46:45 +0200 Subject: [PATCH 4/4] trigger ci