Skip to content

Commit 8a63bc9

Browse files
authored
TFT 1.4.1 Patch Release (#262)
* TFT 1.4.1 Patch Release * Update install.md * Update setup.py * Update RELEASE.md
1 parent d44206c commit 8a63bc9

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ other *untested* combinations may also work.
9797
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
9898
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
9999
[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 |
100+
[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 |
100101
[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 |
101102
[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 |
102103
[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 |

RELEASE.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
1-
# Version 1.4.0
1+
# Version 1.4.1
22

33
## Major Features and Improvements
44

5-
* Added `tf.RaggedTensor` support to all analyzers and mappers with
6-
`reduce_instance_dims=True`.
5+
* N/A
76

87
## Bug Fixes and Other Changes
98

10-
* Fix re-loading a transform graph containing pyfuncs exported as a TF1
11-
SavedModel(added using `tft.apply_pyfunc`) in TF2.
12-
* Depends on `pyarrow>=1,<6`.
13-
* Depends on `tensorflow-metadata>=1.4.0,<1.5.0`.
14-
* Depends on `tfx-bsl>=1.4.0,<1.5.0`.
15-
* Depends on `apache-beam[gcp]>=2.33,<3`.
9+
* Depends on `future` package.
1610

1711
## Breaking Changes
1812

1913
* N/A
2014

2115
## Deprecations
2216

23-
* Deprecated python 3.6 support.
17+
* N/A
2418

docs/install.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ other *untested* combinations may also work.
9696
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
9797
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
9898
[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
99+
[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
99100
[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
100101
[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
101102
[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

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def _make_required_install_packages():
4444
return [
4545
'absl-py>=0.9,<0.13',
4646
'apache-beam[gcp]>=2.33,<3',
47+
'future',
4748
'numpy>=1.16,<1.20',
4849
'protobuf>=3.13,<4',
4950
'pyarrow>=1,<6',

tensorflow_transform/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of TF.Transform."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '1.4.0'
17+
__version__ = '1.4.1'

0 commit comments

Comments
 (0)