Skip to content

Commit 515f50b

Browse files
authored
TFT 1.6.1 Patch Release (#266)
* TFT 1.6.1 Patch Release * Update RELEASE.md
1 parent 181d19d commit 515f50b

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
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.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 1.6.0 |
100+
[1.6.1](https://github.com/tensorflow/transform/blob/v1.6.1/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.8 | 1.6.0 | 1.6.0 |
100101
[1.6.0](https://github.com/tensorflow/transform/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.7 | 1.6.0 | 1.6.0 |
101102
[1.5.0](https://github.com/tensorflow/transform/blob/v1.5.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15.2 / 2.7 | 1.5.0 | 1.5.0 |
102103
[1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 4.0.1 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 |

RELEASE.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
1-
# Version 1.6.0
1+
# Version 1.6.1
22

33
## Major Features and Improvements
44

5-
* Introduced `tft.experimental.get_vocabulary_size_by_name` that can retrieve
6-
the size of a vocabulary computed using `tft.vocabulary` within the
7-
`preprocessing_fn`.
8-
* `tft.experimental.ptransform_analyzer` now supports analyzer cache using the
9-
newly added `tft.experimental.CacheablePTransformAnalyzer` container.
10-
* `tft.bucketize_per_key` now supports weights.
5+
* N/A
116

127
## Bug Fixes and Other Changes
138

14-
* Depends on `numpy>=1.16,<2`.
15-
* Depends on `apache-beam[gcp]>=2.35,<3`.
16-
* Depends on `absl-py>=0.9,<2.0.0`.
17-
* Depends on `tensorflow-metadata>=1.6.0,<1.7.0`.
18-
* Depends on `tfx-bsl>=1.6.0,<1.7.0`.
199
* Depends on
20-
`tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3`.
10+
`tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.9`.
2111

2212
## Breaking Changes
2313

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.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 1.6.0
99+
[1.6.1](https://github.com/tensorflow/transform/blob/v1.6.1/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.8 | 1.6.0 | 1.6.0
99100
[1.6.0](https://github.com/tensorflow/transform/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.7 | 1.6.0 | 1.6.0
100101
[1.5.0](https://github.com/tensorflow/transform/blob/v1.5.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15.2 / 2.7 | 1.5.0 | 1.5.0
101102
[1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 4.0.1 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _make_required_install_packages():
5050
'pydot>=1.2,<2',
5151
# pylint: disable=line-too-long
5252
'tensorflow' + select_constraint(
53-
'>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.8'),
53+
'>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.9'),
5454
# pylint: enable=line-too-long
5555
'tensorflow-metadata' + select_constraint(
5656
default='>=1.6.0,<1.7.0',

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.6.0'
17+
__version__ = '1.6.1'

0 commit comments

Comments
 (0)