Skip to content

Commit

Permalink
TFT 0.29.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 365065067
  • Loading branch information
tf-transform-team authored and tf-transform-team committed Mar 25, 2021
1 parent a8afffb commit 922c307
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ 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.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 0.28.1 |
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 0.29.0 |
[0.29.0](https://github.com/tensorflow/transform/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | 0.29.0 |
[0.28.0](https://github.com/tensorflow/transform/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.1 |
[0.27.0](https://github.com/tensorflow/transform/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0 |
[0.26.0](https://github.com/tensorflow/transform/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0 |
Expand Down
16 changes: 15 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

## Major Features and Improvements

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 0.29.0

## Major Features and Improvements

* `tft.AnalyzeAndTransformDataset` and `tft.TransformDataset` can now output
`pyarrow.RecordBatch`es. This is controlled by a parameter
`output_record_batches` which is set to `False` by default.
Expand All @@ -25,17 +35,21 @@
`tft.apply_vocabulary`), and `tft.apply_function` (identity function).
* Removed the `always_return_num_quantiles` arg of `tft.quantiles` and
`tft.bucketize` which was deprecated in version 0.26.
* Depends on `absl-py>=0.9,<0.13`.
* Added support for `count_params` method to the `TransformFeaturesLayer`.
This will allow to call Keras Model's `summary()` method if the model is
using the `TransformFeaturesLayer`.
* Depends on `absl-py>=0.9,<0.13`.
* Depends on `tensorflow-metadata>=0.29.0,<0.30.0`.
* Depends on `tfx-bsl>=0.29.0,<0.30.0`.

## Breaking Changes

* Existing caches (for all analyzers) are automatically invalidated.

## Deprecations

* N/A

# Version 0.28.0

## Major Features and Improvements
Expand Down
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ 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.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 0.28.1
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 0.29.0
[0.29.0](https://github.com/tensorflow/transform/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | 0.29.0
[0.28.0](https://github.com/tensorflow/transform/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | 0.28.1
[0.27.0](https://github.com/tensorflow/transform/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | 0.27.0
[0.26.0](https://github.com/tensorflow/transform/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ def _make_required_install_packages():
'tensorflow' +
select_constraint('>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<2.5'),
'tensorflow-metadata' + select_constraint(
default='>=0.28,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tfx-bsl' + select_constraint(
default='>=0.28.1,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
]

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__ = '0.29.0.dev'
__version__ = '0.30.0.dev'

0 comments on commit 922c307

Please sign in to comment.