From 14b46fad556527009497f0de0161400ed7e234df Mon Sep 17 00:00:00 2001 From: tfx-bsl-team Date: Tue, 1 Mar 2022 14:53:21 -0800 Subject: [PATCH] TFXBSL 1.7.0 Release PiperOrigin-RevId: 431782938 --- README.md | 3 ++- RELEASE.md | 20 ++++++++++++++++++++ setup.py | 8 ++++---- tfx_bsl/version.py | 2 +- 4 files changed, 27 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5d3aa42c..1c7e06e7 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,8 @@ combinations may also work. tfx-bsl | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-serving-api | ------------------------------------------------------------------------------- | -----------------| ---------|-------------------|---------------------|------------------------| -[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 2.7.0 | +[GitHub master](https://github.com/tensorflow/tfx-bsl/blob/master/RELEASE.md) | 2.36.0 | 5.0.0 | nightly (1.x/2.x) | 1.7.0 | 2.8.0 | +[1.7.0](https://github.com/tensorflow/tfx-bsl/blob/v1.7.0/RELEASE.md) | 2.36.0 | 5.0.0 | 1.15 / 2.8 | 1.7.0 | 2.8.0 | [1.6.0](https://github.com/tensorflow/tfx-bsl/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15 / 2.7 | 1.6.0 | 2.7.0 | [1.5.0](https://github.com/tensorflow/tfx-bsl/blob/v1.4.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15 / 2.7 | 1.5.0 | 2.7.0 | [1.4.0](https://github.com/tensorflow/tfx-bsl/blob/v1.4.0/RELEASE.md) | 2.31.0 | 5.0.0 | 1.15 / 2.6 | 1.4.0 | 2.6.0 | diff --git a/RELEASE.md b/RELEASE.md index c61c0cab..f9472f1d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,14 +6,34 @@ ## Bug Fixes and Other Changes +## Breaking Changes + +## Deprecations + +# Version 1.7.0 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Depends on `apache-beam[gcp]>=2.36,<3`. +* Depends on `tensorflow-metadata>=1.7,<1.8`. * Depends on `tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3`. +* Depends on + `tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3`. * Added a TFXIO where the user defines the beam source. ## Breaking Changes +* N/A + ## Deprecations +* N/A + # Version 1.6.0 ## Major Features and Improvements diff --git a/setup.py b/setup.py index 703fb3e6..677115bf 100644 --- a/setup.py +++ b/setup.py @@ -166,7 +166,7 @@ def select_constraint(default, nightly=None, git_master=None): # six, and protobuf) with TF. install_requires=[ 'absl-py>=0.9,<2.0.0', - 'apache-beam[gcp]>=2.35,<3', + 'apache-beam[gcp]>=2.36,<3', 'google-api-python-client>=1.7.11,<2', 'numpy>=1.16,<2', 'pandas>=1.0,<2', @@ -174,10 +174,10 @@ def select_constraint(default, nightly=None, git_master=None): 'pyarrow>=1,<6', 'tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3', 'tensorflow-metadata' + select_constraint( - default='>=1.6.0,<1.7.0', - nightly='>=1.7.0.dev', + default='>=1.7.0,<1.8.0', + nightly='>=1.8.0.dev', git_master='@git+https://github.com/tensorflow/metadata@master'), - 'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3', + 'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3', ], python_requires='>=3.7,<4', packages=find_packages(), diff --git a/tfx_bsl/version.py b/tfx_bsl/version.py index 93111d72..a6279bce 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__ = '1.7.0.dev' +__version__ = '1.8.0.dev'