From fcc11703f54ccbe75c2582d7d9a752d60daa8305 Mon Sep 17 00:00:00 2001 From: zhuo Date: Wed, 6 Nov 2019 09:16:47 -0800 Subject: [PATCH] Prepare for 0.15.3 release. PiperOrigin-RevId: 278874782 --- RELEASE.md | 5 ++++- setup.py | 2 +- tfx_bsl/version.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 05a60d43..8720bc00 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,9 +1,12 @@ # `tfx_bsl` release notes -## Current version (not yet released; still in development) +## Release 0.15.3 ### Major Features and Improvements +* Requires `apache-beam>=2.16,<2.17` as 2.17 requires a pyarrow version + that we don't support yet. + ### Bug Fixes and Other Changes ### Breaking Changes diff --git a/setup.py b/setup.py index 7d3dc486..afda85f2 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def has_ext_modules(self): # six, and protobuf) with TF. install_requires=[ 'absl-py>=0.7,<0.9', - 'apache-beam[gcp]>=2.16,<3', + 'apache-beam[gcp]>=2.16,<2.17', 'numpy>=1.16,<2', 'protobuf>=3.7,<4', 'psutil>=5.6,<6', diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index 2fe36c7c..e1151a09 100644 --- a/tfx_bsl/version.py +++ b/tfx_bsl/version.py @@ -14,4 +14,4 @@ """Contains the version string of tfx_bsl.""" # Note that setup.py uses this version. -__version__ = '0.16.0dev' +__version__ = '0.15.3'