Skip to content

Commit

Permalink
TFDV 1.16.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 681656051
  • Loading branch information
tfx-copybara committed Oct 3, 2024
1 parent 052aec8 commit 4a18e91
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ other *untested* combinations may also work.

tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | n/a | 1.15.1
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (2.x) | 1.16.0 | n/a | 1.16.0
[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
[1.15.1](https://github.com/tensorflow/data-validation/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.1
[1.15.0](https://github.com/tensorflow/data-validation/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.0
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
Expand Down
22 changes: 22 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,28 @@

## Deprecations

# Version 1.16.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow>=2.16,<2.17`.

## Known Issues

* N/A

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.15.1

## Major Features and Improvements
Expand Down
3 changes: 2 additions & 1 deletion g3doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ other *untested* combinations may also work.

tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (1.x/2.x) | 1.15.0 | n/a | 1.15.1
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (1.x/2.x) | 1.16.0 | n/a | 1.16.0
[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
[1.15.1](https://github.com/tensorflow/data-validation/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.1
[1.15.0](https://github.com/tensorflow/data-validation/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.0
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,16 @@ def select_constraint(default, nightly=None, git_master=None):
'pyfarmhash>=0.2.2,<0.4',
'six>=1.12,<2',
'tensorflow' + select_constraint(
default='>=2.15,<2.16',
nightly='>=2.16.0.dev',
default='>=2.16,<2.17',
nightly='>=2.17.0.dev',
git_master='@git+https://github.com/tensorflow/tensorflow@master'),
'tensorflow-metadata' + select_constraint(
default='>=1.15.0,<1.16',
nightly='>=1.16.0.dev',
default='>=1.16.0,<1.17',
nightly='>=1.17.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master'),
'tfx-bsl' + select_constraint(
default='>=1.15.1,<1.16',
nightly='>=1.16.0.dev',
default='>=1.16.0,<1.17',
nightly='>=1.17.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_data_validation/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of TFDV."""

# Note that setup.py uses this version.
__version__ = '1.16.0.dev'
__version__ = '1.17.0.dev'

0 comments on commit 4a18e91

Please sign in to comment.