=====
- Leverage the C-accelerated Pickler new subclassing API (available in Python
3.8) in cloudpickle. This allows cloudpickle to pickle Python objects up to
30 times faster.
([issue 253](https://github.com/cloudpipe/cloudpickle/pull/253))
- Support pickling of classmethod and staticmethod objects in python2.
arguments. ([issue 262](https://github.com/cloudpipe/cloudpickle/pull/262))
- Add support to pickle type annotations for Python 3.5 and 3.6 (pickling type
annotations was already supported for Python 3.7, Python 3.4 might also work
but is no longer officially supported by cloudpickle)
([issue 276](https://github.com/cloudpipe/cloudpickle/pull/276))
- 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))