Skip to content

Commit 7593a6e

Browse files
tf-transform-teamtfx-copybara
tf-transform-team
authored andcommitted
TFT 1.11.0 Release
PiperOrigin-RevId: 488512777
1 parent 4c0f0e2 commit 7593a6e

File tree

5 files changed

+25
-9
lines changed

5 files changed

+25
-9
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.41.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | 1.10.0 |
99+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.41.0 | 6.0.0 | nightly (1.x/2.x) | 1.11.0 | 1.11.0 |
100+
[1.11.0](https://github.com/tensorflow/transform/blob/v1.11.0/RELEASE.md) | 2.41.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.0 |
100101
[1.10.0](https://github.com/tensorflow/transform/blob/v1.10.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.0 |
101102
[1.9.0](https://github.com/tensorflow/transform/blob/v1.9.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0 |
102103
[1.8.0](https://github.com/tensorflow/transform/blob/v1.8.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.8 | 1.8.0 | 1.8.0 |

RELEASE.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22

33
# Current Version (Still in Development)
44

5+
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 1.11.0
14+
15+
## Major Features and Improvements
16+
517
* This is the last version that supports TensorFlow 1.15.x. TF 1.15.x support
618
will be removed in the next version. Please check the
719
[TF2 migration guide](https://www.tensorflow.org/guide/migrate) to migrate
820
to TF2.
921

10-
## Major Features and Improvements
11-
1222
* Introduced `tft.experimental.document_frequency` and `tft.experimental.idf`
1323
which map each term to its document frequency and inverse document frequency
1424
in the same order as the terms in documents.
@@ -27,8 +37,12 @@
2737

2838
## Breaking Changes
2939

40+
* N/A
41+
3042
## Deprecations
3143

44+
* N/A
45+
3246
# Version 1.10.0
3347

3448
## 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.41.0 | 6.0.0 | nightly (1.x/2.x) | 1.10.0 | 1.10.0
98+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.41.0 | 6.0.0 | nightly (1.x/2.x) | 1.11.0 | 1.11.0
99+
[1.11.0](https://github.com/tensorflow/transform/blob/v1.11.0/RELEASE.md) | 2.41.0 | 6.0.0 | 1.15.5 / 2.10 | 1.11.0 | 1.11.0
99100
[1.10.0](https://github.com/tensorflow/transform/blob/v1.10.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15.5 / 2.9 | 1.10.0 | 1.10.0
100101
[1.9.0](https://github.com/tensorflow/transform/blob/v1.9.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.9 | 1.9.0 | 1.9.0
101102
[1.8.0](https://github.com/tensorflow/transform/blob/v1.8.0/RELEASE.md) | 2.38.0 | 5.0.0 | 1.15.5 / 2.8 | 1.8.0 | 1.8.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ def _make_required_install_packages():
5353
'>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<2.11'),
5454
# pylint: enable=line-too-long
5555
'tensorflow-metadata' + select_constraint(
56-
default='>=1.10.0,<1.11.0',
57-
nightly='>=1.11.0.dev',
56+
default='>=1.11.0,<1.12.0',
57+
nightly='>=1.12.0.dev',
5858
git_master='@git+https://github.com/tensorflow/metadata@master'),
5959
'tfx-bsl' + select_constraint(
60-
default='>=1.10.0,<1.11.0',
61-
nightly='>=1.11.0.dev',
60+
default='>=1.11.0,<1.12.0',
61+
nightly='>=1.12.0.dev',
6262
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
6363
]
6464

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

0 commit comments

Comments
 (0)