Skip to content

Commit ef08fda

Browse files
tf-transform-teamtf-transform-team
authored andcommitted
TFT 1.3.0 Release
PiperOrigin-RevId: 392949310
1 parent 103ae13 commit ef08fda

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
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.2.0 |
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 |
100+
[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 |
102103
[1.1.0](https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0 |

RELEASE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 1.3.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* `tft.quantiles`, `tft.mean` and `tft.var` now ignore NaNs and infinite input
1022
values. Previously, these would lead to incorrect output calculation.
1123
* Improved error message for `tft_beam.AnalyzeDataset`,
@@ -15,13 +27,16 @@
1527
registration when loading transformation graphs.
1628
* Depends on
1729
`tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,<2.7`.
30+
* Depends on `tfx-bsl>=1.3.0,<1.4.0`.
1831

1932
## Breaking Changes
2033

2134
* Existing `tft.mean` and `tft.var` caches are automatically invalidated.
2235

2336
## Deprecations
2437

38+
* N/A
39+
2540
# Version 1.2.0
2641

2742
## Major Features and Improvements

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.2.0
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
99+
[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
99100
[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
100101
[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
101102
[1.1.0](https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def _make_required_install_packages():
5555
nightly='>=1.3.0.dev',
5656
git_master='@git+https://github.com/tensorflow/metadata@master'),
5757
'tfx-bsl' + select_constraint(
58-
default='>=1.2.0,<1.3.0',
59-
nightly='>=1.3.0.dev',
58+
default='>=1.3.0,<1.4.0',
59+
nightly='>=1.4.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.3.0.dev'
17+
__version__ = '1.4.0.dev'

0 commit comments

Comments
 (0)