From ed788265ba3f543a0df0d3979ffbafd0ce67f26e Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 23 Feb 2022 00:44:01 +0000 Subject: [PATCH 1/5] TFT 1.4.1 Patch Release --- README.md | 1 + RELEASE.md | 12 +++--------- setup.py | 1 + tensorflow_transform/version.py | 2 +- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f11212d..4249971f 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl | ------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------| [GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.33.0 | 2.0.0 | nightly (1.x/2.x) | 1.4.0 | 1.4.0 | +[1.4.1](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 2.0.0 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 | [1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 2.0.0 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 | [1.3.0](https://github.com/tensorflow/transform/blob/v1.3.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.6 | 1.2.0 | 1.3.0 | [1.2.0](https://github.com/tensorflow/transform/blob/v1.2.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.5 | 1.2.0 | 1.2.0 | diff --git a/RELEASE.md b/RELEASE.md index ca4e912c..ab0e8025 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,17 +2,11 @@ ## Major Features and Improvements -* Added `tf.RaggedTensor` support to all analyzers and mappers with - `reduce_instance_dims=True`. +* N/A ## Bug Fixes and Other Changes -* Fix re-loading a transform graph containing pyfuncs exported as a TF1 - SavedModel(added using `tft.apply_pyfunc`) in TF2. -* Depends on `pyarrow>=1,<6`. -* Depends on `tensorflow-metadata>=1.4.0,<1.5.0`. -* Depends on `tfx-bsl>=1.4.0,<1.5.0`. -* Depends on `apache-beam[gcp]>=2.33,<3`. +* Depends on `future==0.18.2`. ## Breaking Changes @@ -20,5 +14,5 @@ ## Deprecations -* Deprecated python 3.6 support. +* N/A diff --git a/setup.py b/setup.py index 622b4b8c..f809c24b 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ def _make_required_install_packages(): return [ 'absl-py>=0.9,<0.13', 'apache-beam[gcp]>=2.33,<3', + 'future==0.18.2', 'numpy>=1.16,<1.20', 'protobuf>=3.13,<4', 'pyarrow>=1,<6', diff --git a/tensorflow_transform/version.py b/tensorflow_transform/version.py index 6eacdcfd..7055fa6b 100644 --- a/tensorflow_transform/version.py +++ b/tensorflow_transform/version.py @@ -14,4 +14,4 @@ """Contains the version string of TF.Transform.""" # Note that setup.py uses this version. -__version__ = '1.4.0' +__version__ = '1.4.1' From f2c937eadcc4e4b18ffc6132527128aeea646f08 Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 23 Feb 2022 08:35:52 +0000 Subject: [PATCH 2/5] Update install.md --- docs/install.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/install.md b/docs/install.md index dc4f534e..5b200103 100644 --- a/docs/install.md +++ b/docs/install.md @@ -96,6 +96,7 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl ------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | ------- [GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.33.0 | 2.0.0 | nightly (1.x/2.x) | 1.4.0 | 1.4.0 +[1.4.1](https://github.com/tensorflow/transform/blob/v1.4.1/RELEASE.md) | 2.33.0 | 2.0.0 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 [1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 2.0.0 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 [1.3.0](https://github.com/tensorflow/transform/blob/v1.3.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.6 | 1.2.0 | 1.3.0 [1.2.0](https://github.com/tensorflow/transform/blob/v1.2.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.5 | 1.2.0 | 1.2.0 From 54e86f4d14e742fcf28913e393535f129feda200 Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 23 Feb 2022 08:39:02 +0000 Subject: [PATCH 3/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f809c24b..c862a789 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def _make_required_install_packages(): return [ 'absl-py>=0.9,<0.13', 'apache-beam[gcp]>=2.33,<3', - 'future==0.18.2', + 'future', 'numpy>=1.16,<1.20', 'protobuf>=3.13,<4', 'pyarrow>=1,<6', From 6d4849881f1ad9def1af4b9ac6aa6145c85c021d Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 23 Feb 2022 08:40:54 +0000 Subject: [PATCH 4/5] Update RELEASE.md --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index ab0e8025..133adedf 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -6,7 +6,7 @@ ## Bug Fixes and Other Changes -* Depends on `future==0.18.2`. +* Depends on `future` package. ## Breaking Changes From e71b0e37bb601d43c29cf9b7b97ef3e6990b5c7f Mon Sep 17 00:00:00 2001 From: RaviTeja Gorijala Date: Wed, 23 Feb 2022 08:58:10 +0000 Subject: [PATCH 5/5] Update RELEASE.md --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 133adedf..4a704f8b 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Version 1.4.0 +# Version 1.4.1 ## Major Features and Improvements