Skip to content

Commit 81143e7

Browse files
authored
TFT 0.24.1 Release
* Update setup.py * Update RELEASE.md * Update README.md * Update install.md * Update version.py
1 parent 0816ad8 commit 81143e7

File tree

5 files changed

+12
-23
lines changed

5 files changed

+12
-23
lines changed

README.md

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

6262
tensorflow-transform | apache-beam[gcp] | tensorflow | tensorflow-metadata | tfx-bsl |
6363
------------------------------------------------------------------------------- | -----------------| ------------------|---------------------|---------|
64-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.23.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 |
64+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.24.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.1 |
65+
[0.24.1](https://github.com/tensorflow/transform/blob/v0.24.1/RELEASE.md) | 2.24.0 | 1.15 / 2.3 | 0.24.0 | 0.24.1 |
6566
[0.24.0](https://github.com/tensorflow/transform/blob/v0.24.0/RELEASE.md) | 2.23.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0 |
6667
[0.23.0](https://github.com/tensorflow/transform/blob/v0.23.0/RELEASE.md) | 2.23.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0 |
6768
[0.22.0](https://github.com/tensorflow/transform/blob/v0.22.0/RELEASE.md) | 2.20.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 |

RELEASE.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,18 @@
1-
# Version 0.24.0
1+
# Version 0.24.1
22

33
## Major Features and Improvements
44

5-
* Added native TF 2 implementation of Transform's Beam APIs -
6-
`tft.AnalyzeDataset`, `tft.AnalyzeDatasetWithCache`,
7-
`tft.AnalyzeAndTransformDataset` and `tft.TransformDataset`. The default
8-
behavior will continue to use Tensorflow's compat.v1 APIs. This can be
9-
overriden by setting `tft.Context.force_tf_compat_v1=False`. The default
10-
behavior for TF 2 users will be switched to the new native implementation in
11-
a future release.
5+
* N/A
126

137
## Bug Fixes and Other Changes
148

15-
* Added a small fanout to analyzers' `CombineGlobally` for improved
16-
performance.
17-
* Depends on `absl-py>=0.9,<0.11`.
18-
* Depends on `protobuf>=3.9.2,<4`.
19-
* Depends on `tensorflow-metadata>=0.24,<0.25`.
20-
* Depends on `tfx-bsl>=0.24,<0.25`.
9+
* Depends on `apache-beam[gcp]>=2.24,<3`.
10+
* Depends on `tfx-bsl>=0.24.1,<0.25`.
2111

2212
## Breaking changes
2313

2414
* N/A
2515

2616
## Deprecations
2717

28-
* Deprecating Py3.5 support.
29-
* Parameter `use_tfxio` in the initializer of `Context` is deprecated. TFT
30-
Beam APIs now accepts both "instance dicts" and "TFXIO" input formats.
31-
Setting it will have no effect and it will be removed in the next version.
18+
* N/A

docs/install.md

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

5959
tensorflow-transform | apache-beam[gcp] | tensorflow | tensorflow-metadata | tfx-bsl
6060
------------------------------------------------------------------------------- | ---------------- | ----------------- | ------------------- | -------
61-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.23.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0
61+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.24.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.1
62+
[0.24.1](https://github.com/tensorflow/transform/blob/v0.24.1/RELEASE.md) | 2.24.0 | 1.15 / 2.3 | 0.24.0 | 0.24.1
6263
[0.24.0](https://github.com/tensorflow/transform/blob/v0.24.0/RELEASE.md) | 2.23.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0
6364
[0.23.0](https://github.com/tensorflow/transform/blob/v0.23.0/RELEASE.md) | 2.23.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0
6465
[0.22.0](https://github.com/tensorflow/transform/blob/v0.22.0/RELEASE.md) | 2.20.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _make_required_install_packages():
4343
# six, and protobuf) with TF.
4444
return [
4545
'absl-py>=0.9,<0.11',
46-
'apache-beam[gcp]>=2.23,<3',
46+
'apache-beam[gcp]>=2.24,<3',
4747
'numpy>=1.16,<2',
4848
'protobuf>=3.9.2,<4',
4949
'pydot>=1.2,<2',
@@ -54,7 +54,7 @@ def _make_required_install_packages():
5454
nightly='>=0.25.0.dev',
5555
git_master='@git+https://github.com/tensorflow/metadata@master'),
5656
'tfx-bsl' + select_constraint(
57-
default='>=0.24,<0.25',
57+
default='>=0.24.1,<0.25',
5858
nightly='>=0.25.0.dev',
5959
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
6060
]

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__ = '0.24.0'
17+
__version__ = '0.24.1'

0 commit comments

Comments
 (0)