Skip to content

Commit

Permalink
TFT 1.2.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 387470901
  • Loading branch information
tf-transform-team authored and tf-transform-team committed Jul 29, 2021
1 parent 2e7a25b commit cbb20d9
Show file tree
Hide file tree
Showing 5 changed files with 28 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.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.1 |
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.2.0 |
[1.2.0](https://github.com/tensorflow/transform/blob/v1.2.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.5 | 1.2.0 | 1.2.0 |
[1.1.1](https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1 |
[1.1.0](https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0 |
[1.0.0](https://github.com/tensorflow/transform/blob/v1.0.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0 |
Expand Down
18 changes: 18 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,33 @@

## Major Features and Improvements

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 1.2.0

## Major Features and Improvements

* Added `RaggedTensor` support to output schema inference and transformed
tensors conversion to instance dicts and `pa.RecordBatch` with TF 2.x.

## Bug Fixes and Other Changes

* Depends on `apache-beam[gcp]>=2.31,<3`.
* Depends on `tensorflow-metadata>=1.2.0,<1.3.0`.
* Depends on `tfx-bsl>=1.2.0,<1.3.0`.

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.1.1

## 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.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.1
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.31.0 | 2.0.0 | nightly (1.x/2.x) | 1.2.0 | 1.2.0
[1.2.0](https://github.com/tensorflow/transform/blob/v1.2.0/RELEASE.md) | 2.31.0 | 2.0.0 | 1.15.2 / 2.5 | 1.2.0 | 1.2.0
[1.1.1](https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1
[1.1.0](https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0
[1.0.0](https://github.com/tensorflow/transform/blob/v1.0.0/RELEASE.md) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _make_required_install_packages():
# protobuf) with TF and pyarrow version with tfx-bsl.
return [
'absl-py>=0.9,<0.13',
'apache-beam[gcp]>=2.29,<3',
'apache-beam[gcp]>=2.31,<3',
# TODO(b/193746372): Remove bigquery dependency after TF 2.6 becomes
# available.
'google-cloud-bigquery>=1.28.0,<2.21',
Expand All @@ -54,12 +54,12 @@ def _make_required_install_packages():
'tensorflow' + select_constraint(
'>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<2.6'),
'tensorflow-metadata' + select_constraint(
default='>=1.1.0,<1.2.0',
nightly='>=1.2.0.dev',
default='>=1.2.0,<1.3.0',
nightly='>=1.3.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tfx-bsl' + select_constraint(
default='>=1.1.0,<1.2.0',
nightly='>=1.2.0.dev',
default='>=1.2.0,<1.3.0',
nightly='>=1.3.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__ = '1.2.0.dev'
__version__ = '1.3.0.dev'

0 comments on commit cbb20d9

Please sign in to comment.