Skip to content

Commit

Permalink
TFT 0.25.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 340729341
  • Loading branch information
tf-transform-team authored and tf-transform-team committed Nov 4, 2020
1 parent 85c63bd commit d34884d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ other *untested* combinations may also work.

tensorflow-transform | apache-beam[gcp] | tensorflow | tensorflow-metadata | tfx-bsl |
------------------------------------------------------------------------------- | -----------------| ------------------|---------------------|---------|
[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 |
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.25.0 | nightly (1.x/2.x) | 0.25.0 | 0.25.0 |
[0.25.0](https://github.com/tensorflow/transform/blob/v0.25.0/RELEASE.md) | 2.25.0 | 1.15 / 2.3 | 0.25.0 | 0.25.0 |
[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 |
[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 |
[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 |
Expand Down
15 changes: 15 additions & 0 deletions 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.25.0

## Major Features and Improvements

* Updated the "Getting Started" guide and examples to demonstrate the support
for both the "instance dict" and the "TFXIO" format. Users are encouraged to
start using the "TFXIO" format, expecially in cases where
Expand Down Expand Up @@ -43,9 +53,14 @@
switching the default value of `drop_unused_features` to True.
* Vocabularies written in `tfrecord_gzip` format no longer filter out entries
that are empty or that include a newline character.
* Depends on `apache-beam[gcp]>=2.25,<3`.
* Depends on `tensorflow-metadata>=0.25,<0.26`.
* Depends on `tfx-bsl>=0.25,<0.26`.
## Breaking changes
* N/A
## Deprecations
* The `decode` method of the available coders (`tft.coders.CsvCoder` and
Expand Down
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ other *untested* combinations may also work.

tensorflow-transform | apache-beam[gcp] | tensorflow | tensorflow-metadata | tfx-bsl
------------------------------------------------------------------------------- | ---------------- | ----------------- | ------------------- | -------
[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
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.25.0 | nightly (1.x/2.x) | 0.25.0 | 0.25.0
[0.25.0](https://github.com/tensorflow/transform/blob/v0.25.0/RELEASE.md) | 2.25.0 | 1.15 / 2.3 | 0.25.0 | 0.25.0
[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
[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
[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
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ def _make_required_install_packages():
# six, and protobuf) with TF.
return [
'absl-py>=0.9,<0.11',
'apache-beam[gcp]>=2.24,<3',
'apache-beam[gcp]>=2.25,<3',
'numpy>=1.16,<2',
'protobuf>=3.9.2,<4',
'pydot>=1.2,<2',
'six>=1.12,<2',
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<2.4',
'tensorflow-metadata' + select_constraint(
default='>=0.24,<0.25',
nightly='>=0.25.0.dev',
default='>=0.25,<0.26',
nightly='>=0.26.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tfx-bsl' + select_constraint(
default='>=0.24.1,<0.25',
nightly='>=0.25.0.dev',
default='>=0.25,<0.26',
nightly='>=0.26.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.25.0.dev'
__version__ = '0.26.0.dev'

0 comments on commit d34884d

Please sign in to comment.