Skip to content

Commit d433c32

Browse files
committed
TFDV 0.29.0 Release
PiperOrigin-RevId: 364880931
1 parent debbe73 commit d433c32

File tree

6 files changed

+32
-8
lines changed

6 files changed

+32
-8
lines changed

README.md

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

169169
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
170170
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
171-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | n/a | 0.28.1
171+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | n/a | 0.29.0
172+
[0.29.0](https://github.com/tensorflow/data-validation/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | n/a | 0.29.0
172173
[0.28.0](https://github.com/tensorflow/data-validation/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | n/a | 0.28.1
173174
[0.27.0](https://github.com/tensorflow/data-validation/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | n/a | 0.27.0
174175
[0.26.0](https://github.com/tensorflow/data-validation/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0 | 0.26.0

RELEASE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,39 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 0.29.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
923
* Added check for invalid min and max values for `values_counts` for nested
1024
features.
1125
* Bumped the mininum bazel version required to build TFDV to 3.7.2.
1226
* Depends on `absl-py>=0.9,<0.13`.
27+
* Depends on `tensorflow-metadata>=0.29,<0.30`.
28+
* Depends on `tfx-bsl>=0.29,<0.30`.
1329

1430
## Known Issues
1531

32+
* N/A
33+
1634
## Breaking Changes
1735

36+
* N/A
37+
1838
## Deprecations
1939

40+
* N/A
41+
2042
# Version 0.28.0
2143

2244
## Major Features and Improvements

g3doc/install.md

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

171171
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
172172
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
173-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | n/a | 0.28.1
173+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | n/a | 0.29.0
174+
[0.29.0](https://github.com/tensorflow/data-validation/blob/v0.29.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.29.0 | n/a | 0.29.0
174175
[0.28.0](https://github.com/tensorflow/data-validation/blob/v0.28.0/RELEASE.md) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.28.0 | n/a | 0.28.1
175176
[0.27.0](https://github.com/tensorflow/data-validation/blob/v0.27.0/RELEASE.md) | 2.27.0 | 2.0.0 | 1.15 / 2.4 | 0.27.0 | n/a | 0.27.0
176177
[0.26.0](https://github.com/tensorflow/data-validation/blob/v0.26.0/RELEASE.md) | 2.25.0 | 0.17.0 | 1.15 / 2.3 | 0.26.0 | 0.26.0 | 0.26.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ def select_constraint(default, nightly=None, git_master=None):
189189
'six>=1.12,<2',
190190
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,<3',
191191
'tensorflow-metadata' + select_constraint(
192-
default='>=0.28,<0.29',
193-
nightly='>=0.29.0.dev',
192+
default='>=0.29,<0.30',
193+
nightly='>=0.30.0.dev',
194194
git_master='@git+https://github.com/tensorflow/metadata@master'),
195195
'tfx-bsl' + select_constraint(
196-
default='>=0.28.1,<0.29',
197-
nightly='>=0.29.0.dev',
196+
default='>=0.29,<0.30',
197+
nightly='>=0.30.0.dev',
198198
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
199199
],
200200
extras_require={

tensorflow_data_validation/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""Contains the version string of TFDV."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '0.29.0.dev'
18+
__version__ = '0.30.0.dev'

tensorflow_data_validation/workspace.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def tf_data_validation_workspace():
1919
# Fetch tf.Metadata repo from GitHub.
2020
git_repository(
2121
name = "com_github_tensorflow_metadata",
22-
commit = "75eef37a2d8f2e88bd7d915b03a213563c04b19a",
22+
commit = "a9e43c924e4bc29adc07c20f2a6d17f49b76da39",
2323
remote = "https://github.com/tensorflow/metadata.git",
2424
)
2525
# LINT.ThenChange(//third_party/py/tensorflow_data_validation/google/copy.bara.sky)

0 commit comments

Comments
 (0)