diff --git a/setup.py b/setup.py index c6916fdcdc..520a18860e 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'six >= 1.10.0', 'numpy >= 1.13.3', 'decorator', - 'cloudpickle >= 1.2.2', + 'cloudpickle == 1.3', # TODO(b/155109696): Unpin cloudpickle version. 'gast >= 0.3.2' # For autobatching ] diff --git a/tensorflow_probability/python/version.py b/tensorflow_probability/python/version.py index c4e68a08d0..31c65235ee 100644 --- a/tensorflow_probability/python/version.py +++ b/tensorflow_probability/python/version.py @@ -17,7 +17,7 @@ # We follow Semantic Versioning (https://semver.org/) _MAJOR_VERSION = '0' _MINOR_VERSION = '10' -_PATCH_VERSION = '0' +_PATCH_VERSION = '1' # When building releases, we can update this value on the release branch to # reflect the current release candidate ('rc0', 'rc1') or, finally, the official