Skip to content

Commit

Permalink
TFT 1.6.1 Patch Release (#266)
Browse files Browse the repository at this point in the history
* TFT 1.6.1 Patch Release

* Update RELEASE.md
  • Loading branch information
rtg0795 authored Mar 30, 2022
1 parent 181d19d commit 515f50b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ other *untested* combinations may also work.
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
[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 |
[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 |
[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 |
[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 |
[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 |
Expand Down
16 changes: 3 additions & 13 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,13 @@
# Version 1.6.0
# Version 1.6.1

## Major Features and Improvements

* Introduced `tft.experimental.get_vocabulary_size_by_name` that can retrieve
the size of a vocabulary computed using `tft.vocabulary` within the
`preprocessing_fn`.
* `tft.experimental.ptransform_analyzer` now supports analyzer cache using the
newly added `tft.experimental.CacheablePTransformAnalyzer` container.
* `tft.bucketize_per_key` now supports weights.
* N/A

## Bug Fixes and Other Changes

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

## Breaking Changes

Expand Down
1 change: 1 addition & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ other *untested* combinations may also work.
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
[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
[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
[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
[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
[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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _make_required_install_packages():
'pydot>=1.2,<2',
# pylint: disable=line-too-long
'tensorflow' + select_constraint(
'>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.8'),
'>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.9'),
# pylint: enable=line-too-long
'tensorflow-metadata' + select_constraint(
default='>=1.6.0,<1.7.0',
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_transform/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of TF.Transform."""

# Note that setup.py uses this version.
__version__ = '1.6.0'
__version__ = '1.6.1'

0 comments on commit 515f50b

Please sign in to comment.