Skip to content

Commit 6daccd5

Browse files
tf-transform-teamtf-transform-team
authored andcommitted
TFT 1.4.0 Release
PiperOrigin-RevId: 407696311
1 parent 7a2dc3b commit 6daccd5

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ other *untested* combinations may also work.
9696

9797
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
9898
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
99-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.3.0 |
99+
[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.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 |
102103
[1.1.1](https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1 |

RELEASE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
## Major Features and Improvements
66

7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 1.4.0
14+
15+
## Major Features and Improvements
16+
717
* Added `tf.RaggedTensor` support to all analyzers and mappers with
818
`reduce_instance_dims=True`.
919

@@ -12,9 +22,14 @@
1222
* Fix re-loading a transform graph containing pyfuncs exported as a TF1
1323
SavedModel(added using `tft.apply_pyfunc`) in TF2.
1424
* Depends on `pyarrow>=1,<6`.
25+
* Depends on `tensorflow-metadata>=1.4.0,<1.5.0`.
26+
* Depends on `tfx-bsl>=1.4.0,<1.5.0`.
27+
* Depends on `apache-beam[gcp]>=2.33,<3`.
1528

1629
## Breaking Changes
1730

31+
* N/A
32+
1833
## Deprecations
1934

2035
* Deprecated python 3.6 support.

docs/install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ other *untested* combinations may also work.
9595

9696
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
9797
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
98-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.3.0
98+
[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.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
99100
[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
100101
[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
101102
[1.1.1](https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ def _make_required_install_packages():
4343
# protobuf) with TF and pyarrow version with tfx-bsl.
4444
return [
4545
'absl-py>=0.9,<0.13',
46-
'apache-beam[gcp]>=2.31,<3',
46+
'apache-beam[gcp]>=2.33,<3',
4747
'numpy>=1.16,<1.20',
4848
'protobuf>=3.13,<4',
4949
'pyarrow>=1,<6',
5050
'pydot>=1.2,<2',
5151
'tensorflow' + select_constraint(
5252
'>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7'),
5353
'tensorflow-metadata' + select_constraint(
54-
default='>=1.2.0,<1.3.0',
55-
nightly='>=1.3.0.dev',
54+
default='>=1.4.0,<1.5.0',
55+
nightly='>=1.5.0.dev',
5656
git_master='@git+https://github.com/tensorflow/metadata@master'),
5757
'tfx-bsl' + select_constraint(
58-
default='>=1.3.0,<1.4.0',
59-
nightly='>=1.4.0.dev',
58+
default='>=1.4.0,<1.5.0',
59+
nightly='>=1.5.0.dev',
6060
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
6161
]
6262

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.dev'
17+
__version__ = '1.5.0.dev'

0 commit comments

Comments
 (0)